*/ class Rex_Feed_Template_Lions_home extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'OFFERID' => 'OFFERID', 'NAME' => 'NAME', 'DESCRIPTION' => 'DESCRIPTION', 'PRICE' => 'PRICE', 'PRICE_OLD' => 'PRICE_OLD', 'PRICE_DELIVERY' => 'PRICE_DELIVERY', 'IMAGE' => 'IMAGE', 'LINK' => 'LINK', 'CATEGORY_PATH' => 'CATEGORY_PATH', 'CATEGORY_NAME' => 'CATEGORY_NAME', ), 'Additional Information' => array( 'BRAND' => 'BRAND', 'BASEPRICE' => 'BASEPRICE', 'SIZE' => 'SIZE', 'MATERIAL' => 'MATERIAL', 'COLOR' => 'COLOR', 'CPC' => 'CPC', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'OFFERID', 'type' => 'meta', 'meta_key' => 'id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'NAME', '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' => 'PRICE', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' '.get_option('woocommerce_currency'), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'PRICE_OLD', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'PRICE_DELIVERY', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'IMAGE', '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' => 'CATEGORY_PATH', 'type' => 'meta', 'meta_key' => 'product_cats', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'CATEGORY_NAME', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }