*/ class Rex_Feed_Template_Pricemasher extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'product_id' => 'Product ID', 'product_name' => 'Product name', 'product_model' => 'Product Model', 'product_url' => 'Product URL', 'product_price' => 'Product price', ), 'Additional Information' => array( 'product_description' => 'Product Description', 'manufacturer_name' => 'Manufacturer Name', 'category_name' => 'Category Name', 'image_url' => 'Product image URL', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'product_id', 'type' => 'meta', 'meta_key' => 'id', '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' => 'product_model', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_url', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'cdata', 'limit' => 0, ), array( 'attr' => 'product_price', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }