*/ class Rex_Feed_Template_Lesitedumif extends Rex_Feed_Abstract_Template { protected function init_atts() { $this->attributes = array( 'Lesitedumif Information' => array( 'id' => 'Product ID [id]', 'title' => 'Product Title [title]', 'description' => 'Product Description [description]', 'price' => 'Sale Price [sale_price]', 'regular_price' => 'Regular Price [regular_price]', 'stock' => 'Stock', 'product_url' => 'Product URL [link]', 'image_link' => 'Main Image [image_link]', 'product_manufacturer' => 'Manufacturer [brand]', 'product_categories' => 'Product Categories [product_type]', 'custom_label_0' => 'Custom label 0 [custom_label__0]', 'custom_label_1' => 'Custom label 1 [custom_label__1]' ) ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'id', 'type' => 'meta', 'meta_key' => 'id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'title', 'type' => 'meta', 'meta_key' => 'title', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'remove_shortcodes_and_tags', 'limit' => 0, ), array( 'attr' => 'description', 'type' => 'meta', 'meta_key' => 'description', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'remove_shortcodes_and_tags', 'limit' => 0, ), array( 'attr' => 'price', 'type' => 'meta', 'meta_key' => 'current_price', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'regular_price', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'stock', 'type' => 'meta', 'meta_key' => 'availability', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_url', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'image_link', 'type' => 'meta', 'meta_key' => 'main_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_manufacturer', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_categories', 'type' => 'meta', 'meta_key' => 'product_cats', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'custom_label_0', 'type' => 'meta', 'meta_key' => 'product_cats_path', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'custom_label_1', 'type' => 'meta', 'meta_key' => 'product_tags', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ) ); } }