PEEL Shopping
Open source ecommerce : PEEL Shopping
tailles.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: tailles.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_TAILLES_TITRE'];
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_taille($_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_taille($_POST);
45  $output .= $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => sprintf($GLOBALS['STR_ADMIN_TAILLES_MSG_CREATED_OK'], vb($_POST['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_taille($_POST['id'], $_POST);
61  $output .= $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => sprintf($GLOBALS['STR_ADMIN_TAILLES_MSG_UPDATED_OK'], 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_taille($_GET['id'], $frm);
68  }
69  break;
70 
71  default :
73  break;
74 }
75 include($GLOBALS['repertoire_modele'] . "/admin_haut.php");
76 echo $output;
77 include($GLOBALS['repertoire_modele'] . "/admin_bas.php");
78 
90 {
91  /* Valeurs par défaut */
92  if(empty($frm)) {
93  $frm = array();
94  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
95  $frm['nom_' . $lng] = "";
96  }
97  $frm['position'] = 0;
98  $frm['prix'] = "";
99  $frm['poids'] = "";
100  $frm['signe'] = "";
101  $frm['prix_revendeur'] = "";
102  }
103  $frm['nouveau_mode'] = "insere";
104  $frm['id'] = "";
105  $frm['titre_bouton'] = $GLOBALS['STR_ADMIN_TAILLES_CREATE'];
106 
108 }
109 
118 {
119  if(empty($frm)){
120  // Pas de données venant de validation de formulaire, donc on charge le contenu de la base de données
121  /* Charge les informations du produit */
122  $qid = query("SELECT *
123  FROM peel_tailles
124  WHERE id = " . intval($id) . " AND " . get_filter_site_cond('tailles', null, true));
125  if ($frm = fetch_assoc($qid)) {
126  } else {
127  return $GLOBALS['tplEngine']->createTemplate('global_error.tpl', array('message' => $GLOBALS['STR_ADMIN_TAILLES_NOT_FOUND']))->fetch();
128  }
129  }
130  $frm['id'] = $id;
131  $frm["nouveau_mode"] = "maj";
132  $frm["titre_bouton"] = $GLOBALS['STR_ADMIN_FORM_SAVE_CHANGES'];
133 
135 }
136 
144 {
145  $tpl = $GLOBALS['tplEngine']->createTemplate('admin_formulaire_taille.tpl');
146  $tpl->assign('action', get_current_url(false) . '?start=0');
147  $tpl->assign('form_token', get_form_token_input($_SERVER['PHP_SELF'] . $frm['nouveau_mode'] . intval($frm['id'])));
148  $tpl->assign('mode', vb($frm['nouveau_mode']));
149  $tpl->assign('id', intval(vb($frm['id'])));
150  $tpl_langs = array();
151  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
152  $tpl_langs[] = array('lng' => $lng,
153  'nom' => $frm['nom_' . $lng]
154  );
155  }
156  $tpl->assign('site_id_select_options', get_site_id_select_options(vb($frm['site_id'])));
157  $tpl->assign('STR_ADMIN_WEBSITE', $GLOBALS['STR_ADMIN_WEBSITE']);
158  $tpl->assign('langs', $tpl_langs);
159  $tpl->assign('poids', $frm['poids']);
160  $tpl->assign('prix', str_replace("-", "", $frm["prix"]));
161  $tpl->assign('site_symbole', $GLOBALS['site_parameters']['symbole']);
162  $tpl->assign('prix_revendeur', str_replace("-", "", $frm["prix_revendeur"]));
163  $tpl->assign('signe', $frm['signe']);
164  $tpl->assign('position', $frm['position']);
165  $tpl->assign('titre_bouton', $frm['titre_bouton']);
166  $tpl->assign('STR_TTC', $GLOBALS['STR_TTC']);
167  $tpl->assign('STR_BEFORE_TWO_POINTS', $GLOBALS['STR_BEFORE_TWO_POINTS']);
168  $tpl->assign('STR_ADMIN_TAILLES_FORM_TITLE', $GLOBALS['STR_ADMIN_TAILLES_FORM_TITLE']);
169  $tpl->assign('STR_ADMIN_LANGUAGES_SECTION_HEADER', $GLOBALS['STR_ADMIN_LANGUAGES_SECTION_HEADER']);
170  $tpl->assign('STR_ADMIN_NAME', $GLOBALS['STR_ADMIN_NAME']);
171  $tpl->assign('STR_ADMIN_VARIOUS_INFORMATION_HEADER', $GLOBALS['STR_ADMIN_VARIOUS_INFORMATION_HEADER']);
172  $tpl->assign('STR_ADMIN_TAILLES_OVERWEIGHT', $GLOBALS['STR_ADMIN_TAILLES_OVERWEIGHT']);
173  $tpl->assign('STR_ADMIN_TAILLES_OVERCOST', $GLOBALS['STR_ADMIN_TAILLES_OVERCOST']);
174  $tpl->assign('STR_ADMIN_TAILLES_OVERCOST_RESELLER', $GLOBALS['STR_ADMIN_TAILLES_OVERCOST_RESELLER']);
175  $tpl->assign('STR_ADMIN_TAILLES_SIGN', $GLOBALS['STR_ADMIN_TAILLES_SIGN']);
176  $tpl->assign('STR_ADMIN_POSITION', $GLOBALS['STR_ADMIN_POSITION']);
177  $tpl->assign('STR_ADMIN_GRAMS', $GLOBALS['STR_ADMIN_GRAMS']);
178  return $tpl->fetch();
179 }
180 
188 {
189  /* Supprime le taille spécifié par $id. */
190 
191  $qid = query("SELECT nom_" . $_SESSION['session_langue'] . "
192  FROM peel_tailles
193  WHERE id = " . intval($id) . " AND " . get_filter_site_cond('tailles', null, true));
194 
195  $col = fetch_assoc($qid);
196 
197  /* Efface le taille */
198  query("DELETE FROM peel_tailles WHERE id=" . intval($id) . " AND " . get_filter_site_cond('tailles', null, true));
199  /* Efface ce taille de la table produits_taille */
200  query("DELETE FROM peel_produits_tailles WHERE taille_id=" . intval($id));
201 
202  /* Supprime le stock correspondant */
203  if (check_if_module_active('stock_advanced')) {
204  query("DELETE FROM peel_stocks WHERE taille_id = '" . intval($id) . "'");
205  }
206  return $GLOBALS['tplEngine']->createTemplate('global_success.tpl', array('message' => sprintf($GLOBALS['STR_ADMIN_TAILLES_MSG_DELETED_OK'], $col['nom_' . $_SESSION['session_langue']])))->fetch();
207 }
208 
215 function insere_taille(&$frm)
216 {
217  $sql = "INSERT INTO peel_tailles (
218  poids
219  , position
220  , prix
221  , prix_revendeur
222  , signe
223  , site_id
224  ";
225  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
226  $sql .= ", nom_" . $lng;
227  }
228  $sql .= "
229  ) VALUES (
230  '" . nohtml_real_escape_string($frm['poids']) . "'
231  , '" . intval($frm['position']) . "'
232  , '" . nohtml_real_escape_string($frm['signe'] . $frm['prix']) . "'
233  , '" . nohtml_real_escape_string($frm['signe'] . $frm['prix_revendeur']) . "'
234  ,'" . nohtml_real_escape_string($frm['signe']) . "'
235  ,'" . nohtml_real_escape_string(get_site_id_sql_set_value($frm['site_id'])) . "'";
236  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
237  $sql .= ", '" . nohtml_real_escape_string($frm['nom_' . $lng]) . "'";
238  }
239  $sql .= ")";
240 
241  query($sql);
242 }
243 
251 function maj_taille($id, &$frm)
252 {
253  $prix = $frm['signe'] . $frm['prix'];
254  $prix_revendeur = $frm['signe'] . $frm['prix_revendeur'];
255 
256  /* Met à jour la table taille */
257  $sql = "UPDATE peel_tailles
258  SET poids = '" . nohtml_real_escape_string($frm['poids']) . "'
259  , position = '" . intval($frm['position']) . "'
260  , site_id = '" . nohtml_real_escape_string(get_site_id_sql_set_value($frm['site_id'])) . "'";
261  foreach ($GLOBALS['admin_lang_codes'] as $lng) {
262  $sql .= ", nom_" . $lng . " = '" . nohtml_real_escape_string($frm['nom_' . $lng]) . "'";
263  }
264  $sql .= " , prix = '" . nohtml_real_escape_string($prix) . "', prix_revendeur = '" . nohtml_real_escape_string($prix_revendeur) . "', signe ='" . nohtml_real_escape_string($frm['signe']) . "'
265  WHERE id = '" . intval($id) . "' AND " . get_filter_site_cond('tailles', null, true);
266 
267  query($sql);
268 }
269 
276 {
277  $tpl = $GLOBALS['tplEngine']->createTemplate('admin_liste_taille.tpl');
278  $tpl->assign('add_src', $GLOBALS['administrer_url'] . '/images/add.png');
279  $tpl->assign('drop_src', $GLOBALS['administrer_url'] . '/images/b_drop.png');
280  $tpl->assign('add_href', get_current_url(false) . '?mode=ajout');
281  $result = query("SELECT t.*
282  FROM peel_tailles t
283  WHERE " . get_filter_site_cond('tailles', 't', true) . "
284  ORDER BY t.position ASC, t.prix ASC");
285  if (!(num_rows($result) == 0)) {
286  $tpl_results = array();
287  $i = 0;
288  while ($ligne = fetch_assoc($result)) {
289  $tpl_results[] = array('tr_rollover' => tr_rollover($i, true, null, null, 'sortable_'.$ligne['id']),
290  'nom' => (!empty($ligne['nom_' . $_SESSION['session_langue']])?$ligne['nom_' . $_SESSION['session_langue']]:'['.$ligne['id'].']'),
291  'drop_href' => get_current_url(false) . '?mode=suppr&id=' . $ligne['id'],
292  'modif_href' => get_current_url(false) . '?mode=modif&id=' . $ligne['id'],
293  'prix' => ($ligne['prix'] != 0 ? fprix($ligne['prix'], true, $GLOBALS['site_parameters']['code'], false) : "n.a"),
294  'prix_revendeur' => ($ligne['prix_revendeur'] != 0 ? fprix($ligne['prix_revendeur'], true, $GLOBALS['site_parameters']['code'], false) : "n.a"),
295  'position' => $ligne['position'],
296  'site_name' => get_site_name($ligne['site_id'])
297  );
298  $i++;
299  }
300  $tpl->assign('results', $tpl_results);
301  }
302  $GLOBALS['sortable_rpc'] = 'rpc_positions.php?mode=tailles';
303  $tpl->assign('STR_ADMIN_TAILLES_TITRE', $GLOBALS['STR_ADMIN_TAILLES_TITRE']);
304  $tpl->assign('STR_ADMIN_WEBSITE', $GLOBALS['STR_ADMIN_WEBSITE']);
305  $tpl->assign('STR_ADMIN_TAILLES_LIST_EXPLAIN', $GLOBALS['STR_ADMIN_TAILLES_LIST_EXPLAIN']);
306  $tpl->assign('STR_ADMIN_TAILLES_CREATE', $GLOBALS['STR_ADMIN_TAILLES_CREATE']);
307  $tpl->assign('STR_ADMIN_ACTION', $GLOBALS['STR_ADMIN_ACTION']);
308  $tpl->assign('STR_SIZE', $GLOBALS['STR_SIZE']);
309  $tpl->assign('STR_PRICE', $GLOBALS['STR_PRICE']);
310  $tpl->assign('STR_ADMIN_RESELLER_PRICE', $GLOBALS['STR_ADMIN_RESELLER_PRICE']);
311  $tpl->assign('STR_ADMIN_POSITION', $GLOBALS['STR_ADMIN_POSITION']);
312  $tpl->assign('STR_ADMIN_DELETE_WARNING', $GLOBALS['STR_ADMIN_DELETE_WARNING']);
313  $tpl->assign('STR_DELETE', $GLOBALS['STR_DELETE']);
314  $tpl->assign('STR_ADMIN_TAILLES_UPDATE', $GLOBALS['STR_ADMIN_TAILLES_UPDATE']);
315  $tpl->assign('STR_ADMIN_TAILLES_NOTHING_FOUND', $GLOBALS['STR_ADMIN_TAILLES_NOTHING_FOUND']);
316  return $tpl->fetch();
317 }
318 
affiche_formulaire_ajout_taille(&$frm)
FONCTIONS.
Definition: tailles.php:89
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
$result
insere_taille(&$frm)
Ajoute le taille dans la table taille.
Definition: tailles.php:215
get_current_url($with_get=true, $get_short_url=false, $take_away_get_args_array=null)
get_current_url()
Definition: fonctions.php:1743
affiche_formulaire_modif_taille($id, &$frm)
Affiche le formulaire de modification pour le taille sélectionné
Definition: tailles.php:117
$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.
affiche_formulaire_taille(&$frm)
affiche_formulaire_taille()
Definition: tailles.php:143
affiche_liste_taille()
affiche_liste_taille()
Definition: tailles.php:275
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
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
$output
Definition: tailles.php:21
fetch_assoc($query_result)
fetch_assoc()
Definition: database.php:283
$frm
Definition: tailles.php:22
$GLOBALS['DOC_TITLE']
Definition: tailles.php:19
supprime_taille($id)
supprime_taille()
Definition: tailles.php:187
$form_error_object
Definition: tailles.php:23
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
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
maj_taille($id, &$frm)
Met à jour le taille $id avec de nouvelles valeurs.
Definition: tailles.php:251
$id
Definition: articles.php:22
fprix($price, $display_currency=false, $currency_code_or_default=null, $convertion_needed_into_currency=true, $currency_rate=null, $display_iso_currency_code=false, $format=true, $force_format_separator=null, $add_rdfa_properties=false, $round_even_if_no_format=false)
fprix formatte le prix donné en le convertissant si nécessaire au préalable et en ajoutant éventuelle...
Definition: fonctions.php:242
check_if_module_active($module_name, $specific_file_name=null)
Renvoie si un module est présent et activé ou non - Peut être appelé avant ou après le chargement d'u...
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:38 - Peel ecommerce is a product of Agence web Advisto SAS. All rights reserved.