*/ class Rex_Feed_Template_Pricesearcher extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'title' => 'Product name', 'description' => 'Description', 'image_link' => 'Image Link', 'link' => 'Product Link', 'price' => 'Product Price', ), 'Additional Information' => array( 'product_id' => 'Product ID', 'brand' => 'Brand', 'author' => 'Author', 'sale_price' => 'Sale Price', 'product_category' => 'Product category', 'color' => 'Product color', 'size' => 'Size', 'shipping_cost' => 'Shipping Cost', 'image_thumbnail_link' => 'Image Thumbnail Link', 'GTIN' => 'GTIN', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'title', 'type' => 'meta', 'meta_key' => 'title', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'description', 'type' => 'meta', 'meta_key' => 'description', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'image_link', 'type' => 'meta', 'meta_key' => 'featured_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'link', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'cdata', 'limit' => 0, ), array( 'attr' => 'price', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }