*/ class Rex_Feed_Template_Cezigue extends Rex_Feed_Abstract_Template { protected function init_atts(){ $this->attributes = array( 'Required Information' => array( 'code_produit' => 'Code Produit', 'titre_produit' => 'Titre produit', 'description' => 'Description', 'prix_de_vente' => 'Prix de vente', 'URL_image' => 'URL Image', 'categorie' => 'Categorie', 'gtin' => 'GTIN', 'marque' => 'Marque', 'prix_barre' => 'Prix barre', 'disponibilite' => 'Disponibilité', 'URL_produit' => 'URL Produit', ), 'Additional Information' => array( 'couleur' => 'Couleur', ), 'Recommended Information' => array( 'taille' => 'Taille', 'coupe' => 'Coupe', 'matiere' => 'Matiere', 'motif' => 'Motif', 'delais_de_livraison' => 'Délais de livraison', 'frais_de_livraison' => 'Frais de livraison', ), ); } protected function init_default_template_mappings(){ $this->template_mappings = array( array( 'attr' => 'code_produit', 'type' => 'meta', 'meta_key' => 'id', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'titre_produit', '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' => 'prix_de_vente', 'type' => 'meta', 'meta_key' => 'price', 'st_value' => '', 'prefix' => '', 'suffix' => ' '.get_option('woocommerce_currency'), 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'URL_image', 'type' => 'meta', 'meta_key' => 'featured_image', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'categorie', 'type' => 'meta', 'meta_key' => 'product_cats', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'gtin', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'marque', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'prix_barre', 'type' => 'static', 'meta_key' => '', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'disponibilite', 'type' => 'meta', 'meta_key' => 'availability', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'default', 'limit' => 0, ), array( 'attr' => 'URL_produit', 'type' => 'meta', 'meta_key' => 'link', 'st_value' => '', 'prefix' => '', 'suffix' => '', 'escape' => 'cdata', 'limit' => 0, ), ); } }