*/ class Rex_Feed_Template_Zap_co_il extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Basic Information' => array( 'PRODUCT_URL' => 'Product URL [PRODUCT_URL]', 'PRODUCT_NAME' => 'Product Name [PRODUCT_NAME]', 'MODEL' => 'Product Model [MODEL]', 'DETAILS' => 'Product Details [DETAILS]', 'CATALOG_NUMBER' => 'Product Catalog Number [CATALOG_NUMBER] ', 'PRODUCTCODE' => 'Product Code [PRODUCTCODE]', 'CURRENCY' => 'Currency [CURRENCY]', 'PRICE' => 'Price [PRICE]', 'SHIPMENT_COST' => 'Shipping Cost [SHIPMENT_COST]', 'DELIVERY_TIME' => 'Delivery Time [DELIVERY_TIME]', 'MANUFACTURER' => 'Manufacturer [MANUFACTURER]', 'WARRANTY' => 'Warranty [WARRANTY]', 'IMAGE' => 'Image URL [IMAGE]', 'TAX' => 'Tax [TAX]' ), ); } protected function init_default_template_mappings() { $this->template_mappings = array( array( 'attr' => 'PRODUCT_URL', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'PRODUCT_NAME', 'type' => 'meta', 'meta_key' => 'title', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'MODEL', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'DETAILS', 'type' => 'meta', 'meta_key' => 'description', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'CATALOG_NUMBER', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'PRODUCTCODE', 'type' => 'meta', 'meta_key' => 'sku', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'CURRENCY', 'type' => 'static', 'meta_key' => '', 'st_value' => get_option( 'woocommerce_currency' ), 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'PRICE', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' ' . get_option( 'woocommerce_currency' ), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'SHIPMENT_COST', 'type' => 'meta', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'DELIVERY_TIME', 'type' => 'meta', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'MANUFACTURER', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'WARRANTY', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'IMAGE', 'type' => 'meta', 'meta_key' => 'main_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'TAX', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }