PEEL Shopping
Open source ecommerce : PEEL Shopping
couleurs.php
Go to the documentation of this file.
1 <?php
2 // This file should be in UTF8 without BOM - Accents examples: éèê
3 // +----------------------------------------------------------------------+
4 // | Copyright (c) 2004-2015 Advisto SAS, service PEEL - contact@peel.fr |
5 // +----------------------------------------------------------------------+
6 // | This file is part of PEEL Shopping 8.0.0, which is subject to an |
7 // | opensource GPL license: you are allowed to customize the code |
8 // | for your own needs, but must keep your changes under GPL |
9 // | More information: https://www.peel.fr/lire/licence-gpl-70.html |
10 // +----------------------------------------------------------------------+
11 // | Author: Advisto SAS, RCS 479 205 452, France, https://www.peel.fr/ |
12 // +----------------------------------------------------------------------+
13 // $Id: couleurs.php 46935 2015-09-18 08:49:48Z gboussin $
14 define('IN_PEEL_ADMIN', true);
15 include("../configuration.inc.php");
17 necessite_priv("admin_products");
18 
19 $GLOBALS['DOC_TITLE'] = $GLOBALS['STR_ADMIN_COULEURS_COLORS_TITLE'];
20 
21 $output = '';
22 $frm = $_POST;
24 
25 switch (vb($_REQUEST['mode'])) {
26  case "ajout" :
28  break;
29 
30  case "modif" :
32  break;
33 
34  case "suppr" :
35  $output .= supprime_couleur($_GET['id']);
37  break;
38 
39  case "insere" :
40  if (!verify_token($_SERVER['PHP_SELF'] . $frm['mode'] . $frm['id'])) {
41  $form_error_object->add('token', $GLOBALS['STR_INVALID_TOKEN']);
42  }
43  if (!$form_error_object->count()) {
44  $output .= insere_couleur($_POST);
45  $output .= $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => sprintf($GLOBALS['STR_ADMIN_COULEURS_MSG_COLOR_CREATED'], vb($frm['nom_' . $_SESSION["session_langue"]]))))->fetch();
47  } else {
48  if ($form_error_object->has_error('token')) {
49  $output .= $form_error_object->text('token');
50  }
52  }
53  break;
54 
55  case "maj" :
56  if (!verify_token($_SERVER['PHP_SELF'] . $frm['mode'] . $frm['id'])) {
57  $form_error_object->add('token', $GLOBALS['STR_INVALID_TOKEN']);
58  }
59  if (!$form_error_object->count()) {
60  $output .= maj_couleur($_POST['id'], $_POST);
61  $output .= $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => sprintf($GLOBALS['STR_ADMIN_COULEURS_MSG_COLOR_UPDATED'], vn($_POST['id']))))->fetch();
63  } else {
64  if ($form_error_object->has_error('token')) {
65  $output .= $form_error_object->text('token');
66  }
67  $output .= affiche_formulaire_modif_couleur($_GET['id'], $frm);
68  }
69  break;
70 
71  default :
73  break;
74 }
75 
76 include($GLOBALS['repertoire_modele'] . "/admin_haut.php");
77 echo $output;
78 include($GLOBALS['repertoire_modele'] . "/admin_bas.php");
79 
90 {
91  if(empty($frm)) {
92  $frm['position'] = 0;
93  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
94  $frm['nom_' . $lng] = "";
95  }
96  }
97  /* Default value*/
98  $frm['nouveau_mode'] = "insere";
99  $frm['id'] = "";
100  $frm['titre_bouton'] = $GLOBALS['STR_ADMIN_COULEURS_ADD_COLOR_BUTTON'];
101 
103 }
104 
112 {
113  if(empty($frm)){
114  // Pas de données venant de validation de formulaire, donc on charge le contenu de la base de données
115  $qid = query("SELECT *
116  FROM peel_couleurs
117  WHERE id = " . intval($id) . " AND " . get_filter_site_cond('couleurs', null, true));
118  if ($frm = fetch_assoc($qid)) {
119  } else {
120  return $GLOBALS['tplEngine']->createTemplate('global_error.tpl', array('message' => $GLOBALS['STR_ADMIN_COULEURS_ERR_COLOR_NOT_FOUND']))->fetch();
121  }
122  }
123  $frm['id'] = $id;
124  $frm["nouveau_mode"] = "maj";
125  $frm["titre_bouton"] = $GLOBALS['STR_ADMIN_FORM_SAVE_CHANGES'];
127 }
128 
135 {
136  $tpl = $GLOBALS['tplEngine']->createTemplate('admin_formulaire_couleur.tpl');
137  $tpl->assign('action', get_current_url(false) . '?start=0');
138  $tpl->assign('form_token', get_form_token_input($_SERVER['PHP_SELF'] . $frm['nouveau_mode'] . intval($frm['id'])));
139  $tpl->assign('mode', $frm["nouveau_mode"]);
140  $tpl->assign('id', intval($frm['id']));
141  $tpl_langs = array();
142  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
143  $tpl_langs[] = array('lng' => $lng,
144  'nom' => $frm['nom_' . $lng]
145  );
146  }
147  $tpl->assign('site_id_select_options', get_site_id_select_options(vb($frm['site_id'])));
148  $tpl->assign('langs', $tpl_langs);
149  $tpl->assign('position', $frm["position"]);
150  $tpl->assign('titre_bouton', $frm["titre_bouton"]);
151  $tpl->assign('STR_ADMIN_WEBSITE', $GLOBALS['STR_ADMIN_WEBSITE']);
152  $tpl->assign('STR_BEFORE_TWO_POINTS', $GLOBALS['STR_BEFORE_TWO_POINTS']);
153  $tpl->assign('STR_ADMIN_LANGUAGES_SECTION_HEADER', $GLOBALS['STR_ADMIN_LANGUAGES_SECTION_HEADER']);
154  $tpl->assign('STR_ADMIN_VARIOUS_INFORMATION_HEADER', $GLOBALS['STR_ADMIN_VARIOUS_INFORMATION_HEADER']);
155  $tpl->assign('STR_ADMIN_POSITION', $GLOBALS['STR_ADMIN_POSITION']);
156  $tpl->assign('STR_ADMIN_NAME', $GLOBALS['STR_ADMIN_NAME']);
157  return $tpl->fetch();
158 }
159 
168 {
169  /* Efface la couleur */
170  query("DELETE FROM peel_couleurs WHERE id = '" . intval($id) . "' AND " . get_filter_site_cond('couleurs', null, true));
171  /* Efface cette couleur de la table produits_couleur */
172  query("DELETE FROM peel_produits_couleurs WHERE couleur_id = '" . intval($id) . "'");
173  $message = sprintf($GLOBALS['STR_ADMIN_COULEURS_MSG_COLOR_DELETED'], get_color_name($id));
174  /* Supprime le stock correspondant si module de gestion de stock activé */
175  $message .= call_module_hook('product_color_delete', array('id' => $id), 'output');
176  echo $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => $message))->fetch();
177 }
178 
186 {
187  $sql = "INSERT INTO peel_couleurs (
188  site_id
189  , position
190  ";
191  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
192  $sql .= ", nom_" . $lng;
193  }
194  $sql .= "
195  ) VALUES (
197  ,'" . intval($frm['position']) . "'";
198  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
199  $sql .= ", '" . nohtml_real_escape_string($frm['nom_' . $lng]) . "'";
200  }
201  $sql .= ")";
202 
203  query($sql);
204 }
205 
213 function maj_couleur($id, $frm)
214 {
215  /* Met à jour la table couleur */
216  $sql = "UPDATE peel_couleurs
217  SET site_id = '" . nohtml_real_escape_string(get_site_id_sql_set_value($frm['site_id'])) . "'
218  , position = '" . intval($frm['position']) . "'";
219  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
220  $sql .= ", nom_" . $lng . "='" . nohtml_real_escape_string($frm['nom_' . $lng]) . "'";
221  }
222  $sql .= "WHERE id = '" . intval($id) . "' AND " . get_filter_site_cond('couleurs', null, true);
223  query($sql);
224 }
225 
232 {
233  $sql = "SELECT c.*
234  FROM peel_couleurs c
235  WHERE " . get_filter_site_cond('couleurs', 'c', true) . "
236  ORDER BY c.position ASC, c.nom_" . $_SESSION['session_langue'] . " ASC";
237  $result = query($sql);
238 
239  $tpl = $GLOBALS['tplEngine']->createTemplate('admin_liste_couleur.tpl');
240  $tpl->assign('add_src', $GLOBALS['administrer_url'] . '/images/add.png');
241  $tpl->assign('add_href', get_current_url(false) . '?mode=ajout');
242  $tpl->assign('drop_src', $GLOBALS['administrer_url'] . '/images/b_drop.png');
243  if (!(num_rows($result) == 0)) {
244  $tpl_results = array();
245  $i = 0;
246  while ($ligne = fetch_assoc($result)) {
247  $tpl_results[] = array('tr_rollover' => tr_rollover($i, true, null, null, 'sortable_'.$ligne['id']),
248  'nom' => (!empty($ligne['nom_' . $_SESSION['session_langue']])?$ligne['nom_' . $_SESSION['session_langue']]:'['.$ligne['id'].']'),
249  'drop_href' => get_current_url(false) . '?mode=suppr&id=' . $ligne['id'],
250  'edit_href' => get_current_url(false) . '?mode=modif&id=' . $ligne['id'],
251  'position' => $ligne['position'],
252  'site_name' => get_site_name($ligne['site_id'])
253  );
254  $i++;
255  }
256  $tpl->assign('results', $tpl_results);
257  }
258  $GLOBALS['sortable_rpc'] = 'rpc_positions.php?mode=couleurs';
259  $tpl->assign('STR_ADMIN_WEBSITE', $GLOBALS['STR_ADMIN_WEBSITE']);
260  $tpl->assign('STR_ADMIN_COULEURS_COLORS_TITLE', $GLOBALS['STR_ADMIN_COULEURS_COLORS_TITLE']);
261  $tpl->assign('STR_ADMIN_ACTION', $GLOBALS['STR_ADMIN_ACTION']);
262  $tpl->assign('STR_ADMIN_NAME', $GLOBALS['STR_ADMIN_NAME']);
263  $tpl->assign('STR_ADMIN_POSITION', $GLOBALS['STR_ADMIN_POSITION']);
264  $tpl->assign('STR_DELETE', $GLOBALS['STR_DELETE']);
265  $tpl->assign('STR_ADMIN_DELETE_WARNING', $GLOBALS['STR_ADMIN_DELETE_WARNING']);
266  $tpl->assign('STR_ADMIN_COULEURS_MODIFY_COLOR', $GLOBALS['STR_ADMIN_COULEURS_MODIFY_COLOR']);
267  $tpl->assign('STR_ADMIN_COULEURS_NO_COLOR_FOUND', $GLOBALS['STR_ADMIN_COULEURS_NO_COLOR_FOUND']);
268  $tpl->assign('STR_ADMIN_COULEURS_ADD_COLOR_BUTTON', $GLOBALS['STR_ADMIN_COULEURS_ADD_COLOR_BUTTON']);
269  $tpl->assign('STR_ADMIN_COULEURS_LIST_EXPLAIN', $GLOBALS['STR_ADMIN_COULEURS_LIST_EXPLAIN']);
270  return $tpl->fetch();
271 }
272 
maj_couleur($id, $frm)
Met à jour le couleur $id avec de nouvelles valeurs.
Definition: couleurs.php:213
get_site_name($site_ids, $skip_rights_check=false)
Retourne le nom d'un ou de plusieurs sites à partir de l'id.
Definition: fonctions.php:4763
affiche_formulaire_ajout_couleur(&$frm)
FONCTIONS.
Definition: couleurs.php:89
$result
affiche_formulaire_couleur(&$frm)
affiche_formulaire_couleur()
Definition: couleurs.php:134
get_current_url($with_get=true, $get_short_url=false, $take_away_get_args_array=null)
get_current_url()
Definition: fonctions.php:1743
$output
Definition: couleurs.php:21
$tpl_langs
get_site_id_select_options($selected_site_id=null, $selected_site_name=null, $display_first_option=null, $select_current_site_id_by_default=false)
Créer les options pour le select qui liste les noms de sites configurés en back office.
insere_couleur($frm)
Ajoute la couleur dans la table couleur.
Definition: couleurs.php:185
get_color_name($color_id)
Renvoie le nom d'une couleur.
Definition: fonctions.php:1914
nohtml_real_escape_string($value, $allowed_tags=null)
Protège les données pour insertion dans MySQL ET supprime les tags HTML pour protéger de toute sorte ...
Definition: database.php:400
if(!empty($_GET['id'])) if(isset($_POST['form_name'], $_POST['form_subject'], $_POST['form_text'], $_POST['form_lang'])&&empty($_GET['id'])) if(empty($_GET['id'])) $tpl
necessite_priv($priv, $demo_allowed=true, $configuration_modification=false)
Cette fonction vérifie si l'utilisateur a les privilèges de $priv.
Definition: fonctions.php:1575
get_filter_site_cond($table_technical_code, $table_alias=null, $use_strict_rights_if_in_admin=false, $specific_site_id=null, $exclude_public_items=false, $admin_force_multisite_if_allowed=false)
Retourne la condition SQL permettant de filtrer les données pour une table.
Definition: fonctions.php:4643
query($query, $die_if_error=false, $database_object=null, $silent_if_error=false, $security_sql_filter=true)
The query() function is meant to be called anywhere you want to make a query.
Definition: database.php:158
affiche_liste_couleur()
affiche_liste_couleur()
Definition: couleurs.php:231
vb(&$var, $default=null)
Variable blanche if $var n'est pas défini, retourne $default, sinon retourne $var.
Definition: format.php:97
necessite_identification()
Si l'utilisateur n'est pas connecté à un compte, on affiche une page d'identification et arrête le sc...
Definition: fonctions.php:1596
num_rows($query_result)
num_rows()
Definition: database.php:321
fetch_assoc($query_result)
fetch_assoc()
Definition: database.php:283
call_module_hook($hook, $params, $mode= 'boolean')
Appelle la fonction correspondant au $hook pour chaque module installé La fonction doit s'appeler : [...
$form_error_object
Definition: couleurs.php:23
affiche_formulaire_modif_couleur($id, &$frm)
Affiche le formulaire de modification pour la couleur sélectionnée.
Definition: couleurs.php:111
get_form_token_input($name= 'general', $use_existing_token=true, $return_as_input_form=true)
get_form_token_input()
Definition: fonctions.php:94
vn(&$var, $default=0)
Variable nulle if $var n'est pas défini, retourne $default, sinon retourne $var.
Definition: format.php:110
get_site_id_sql_set_value($site_ids)
Retourne la valeur SQL d'un champ INT ou SET suivant que ce soit un entier ou un tableau.
Definition: fonctions.php:4747
supprime_couleur($id)
Supprime la couleur spécifié par $id.
Definition: couleurs.php:167
verify_token($name= 'general', $delay_in_minutes=60, $check_referer_if_set_by_server=true, $cancel_token=true, $minimum_wait_in_seconds_before_use=0)
Vérification de la validité d'un token Par défaut, un token est valide 1h, et utilisable 1 seule fois...
Definition: fonctions.php:118
$id
Definition: articles.php:22
$frm
Definition: couleurs.php:22
$GLOBALS['DOC_TITLE']
Definition: couleurs.php:19
if(defined('IN_PEEL_ADMIN')||IN_INSTALLATION) $_SESSION['session_langue']

This documentation for Open ecommerce PEEL Shopping and PEEL.fr has been generated by Doxygen on Thu Oct 15 2015 14:29:06 - Peel ecommerce is a product of Agence web Advisto SAS. All rights reserved.