*/ class Rex_Feed_Template_Newegg extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'seller_part' => 'Seller Part', 'product_description' => 'Product Description', 'selling_price' => 'Selling Price', 'item_images' => 'Item Images', 'manufacturer' => 'Manufacturer', 'inventory' => 'Inventory', 'item_length' => 'Item Length', 'item_width' => 'Item Width', 'item_height' => 'Item Height', 'item_weight' => 'Item Weight', 'shipping' => 'Shipping', 'website_short_title' => 'Website Short Title', ), 'Additional Information' => array( 'currency' => 'Currency', 'item_condition' => 'Item condition', 'MSRP' => 'MSRP', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'seller_part', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'product_description', 'type' => 'meta', 'meta_key' => 'description', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'selling_price', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' '.get_option('woocommerce_currency'), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'item_images', 'type' => 'meta', 'meta_key' => 'featured_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'manufacturer', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'inventory', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'item_length', 'type' => 'meta', 'meta_key' => 'length', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'item_width', 'type' => 'meta', 'meta_key' => 'width', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'item_height', 'type' => 'meta', 'meta_key' => 'height', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'item_weight', 'type' => 'meta', 'meta_key' => 'weight', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'shipping', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'website_short_title', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }