*/ class Rex_Feed_Template_Domodi extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'item_id' => 'Item ID', 'product_name' => 'Product Name', 'imgurl' => 'Image Url', 'category' => 'Category Text', 'item_group_id' => 'Item Group ID', 'price_vat' => 'Price VAT', 'product_no' => 'Product No', 'url' => 'URL', 'manufacturer' => 'Manufacturer', ), 'Additional Information' => array( 'delivery_id' => 'Delivery ID', 'delivery_price' => 'Delivery Price', 'ean' => 'EAN', ), 'Recommended Information' => array( 'description' => 'Description', 'imgurl_alternative' => 'Img URL Alternative', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'item_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' => 'imgurl', 'type' => 'meta', 'meta_key' => 'featured_image', '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' => 'item_group_id', 'type' => 'meta', 'meta_key' => 'item_group_id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'price_vat', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' '.get_option('woocommerce_currency'), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_no', 'type' => 'meta', 'meta_key' => 'product_no', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'url', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'cdata', 'limit' => 0, ), array( 'attr' => 'manufacturer', 'type' => 'meta', 'meta_key' => 'manufacturer', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }