*/ class Rex_Feed_Template_Idealo extends Rex_Feed_Abstract_Template { protected function init_atts() { $this->attributes = array( 'Required Information' => array( 'product_id' => 'Unique id', 'title' => 'Product name', 'category' => 'Category', 'standard_price' => 'Standard Price', 'product_URL' => 'Product URL', 'image_URL' => 'Image URL', 'EAN' => 'EAN', 'parent_id' => 'Parent ID', 'colour' => 'Colour', 'size' => 'Size', 'material' => 'Material', 'brand' => 'Brand', ) , 'Optional Information' => array( 'sub_category' => 'Sub Category', 'sub_category1' => 'Sub Category1', 'sub_category2' => 'Sub Category2', 'description' => 'Description', 'barred_price' =>'Barred Price', 'sale_price' => 'Sale Price', 'product_type' => 'Product Type', 'delivery_time' => 'Delivery Time', 'quantity_in_stock' => 'Quantity In Stock', 'delivery_cost' => 'Delivery Cost', 'availability' => 'Availability', 'MPN' => 'MPN', ) , ); } 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' => 'title', 'type' => 'meta', 'meta_key' => 'title', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ) , array( 'attr' => 'category', 'type' => 'meta', 'meta_key' => 'product_cats', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'standard_price', 'type' => 'meta', 'meta_key' => 'price', '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_URL', 'type' => 'meta', 'meta_key' => 'featured_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ) , array( 'attr' => 'EAN', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ) , array( 'attr' => 'parent_id', 'type' => 'meta', 'meta_key' => 'item_group_id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ) , array( 'attr' => 'colour', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'size', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'material', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'brand', 'type' => 'meta', 'meta_key' => 'brand', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }