*/ class Rex_Feed_Template_Grosshandel extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'Artikel-Nr' => 'Artikel-Nr', 'Bezeichnung' => 'Bezeichnung', 'Beschreibung' => 'Beschreibung', 'Preis' => 'Preis', 'Währung' => 'Währung', 'Foto' => 'Foto', 'Unter-Rubrik' => 'Unter-Rubrik', 'Deeplink' => 'Deeplink', 'Verkaufseinheit' => 'Verkaufseinheit', 'menge' => 'Menge', 'Lieferzeit' => 'Lieferzeit', ), 'Additional Information' => array( 'short_discription' => 'Kurzbeschreibung', ), 'Recommended Information' => array( 'photo2' => 'Foto-2', 'photo3' => 'Foto-3', 'photo4' => 'Foto-4', 'formal_price' => 'Ehemaliger Preis', 'ean' => 'Ean', 'brand' => 'Marke', 'good_condition' => 'Warenzustand', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'Artikel-Nr', 'type' => 'meta', 'meta_key' => 'id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Bezeichnung', 'type' => 'meta', 'meta_key' => 'title', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Beschreibung', 'type' => 'meta', 'meta_key' => 'description', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Preis', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' '.get_option('woocommerce_currency'), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Währung', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Foto', 'type' => 'meta', 'meta_key' => 'featured_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Unter-Rubrik', 'type' => 'meta', 'meta_key' => 'product_cats', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Deeplink', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Verkaufseinheit', 'type' => 'meta', 'meta_key' => 'quantity', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'menge', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'Lieferzeit', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), ); } }