dolibarr 21.0.0-beta
card.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2016 Marcos García <marcosgdf@gmail.com>
3 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2022 Open-Dsi <support@open-dsi.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26// Load Dolibarr environment
27require '../main.inc.php';
28require 'class/ProductAttribute.class.php';
29require 'class/ProductAttributeValue.class.php';
30require 'lib/variants.lib.php';
31
42// Load translation files required by the page
43$langs->loadLangs(array('products'));
44
45$id = GETPOSTINT('id');
46$ref = GETPOST('ref', 'alpha');
47$action = GETPOST('action', 'aZ09');
48$confirm = GETPOST('confirm', 'alpha');
49$cancel = GETPOST('cancel', 'alpha');
50$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'productattribute'; // To manage different context of search
51$backtopage = GETPOST('backtopage', 'alpha');
52$backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
53$lineid = GETPOST('lineid', 'alpha');
54
55// Security check
56if (!isModEnabled('variants')) {
57 accessforbidden('Module not enabled');
58}
59if ($user->socid > 0) { // Protection if external user
61}
62
63// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
64$hookmanager->initHooks(array('productattributecard', 'globalcard'));
65
66$result = restrictedArea($user, 'variants');
67
68$object = new ProductAttribute($db);
69$extrafields = new ExtraFields($db);
70
71// Fetch optionals attributes and labels
72$extrafields->fetch_name_optionals_label($object->table_element);
73
74// Load object
75include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be 'include', not 'include_once'
76
77$permissiontoread = $user->hasRight('variants', 'read');
78$permissiontoadd = $user->hasRight('variants', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
79$permissiontoedit = $user->hasRight('variants', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
80$permissiontodelete = $user->hasRight('variants', 'delete');
81
82$error = 0;
83
84
85/*
86 * Actions
87 */
88
89
90$parameters = array();
91// Note that $action and $object may be modified by some hooks
92$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action);
93if ($reshook < 0) {
94 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
95}
96
97if (empty($reshook)) {
98 $error = 0;
99
100 $backurlforlist = dol_buildpath('/variants/list.php', 1);
101
102 if (empty($backtopage) || ($cancel && empty($id))) {
103 if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
104 if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
105 $backtopage = $backurlforlist;
106 } else {
107 $backtopage = dol_buildpath('/variants/card.php', 1).'?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
108 }
109 }
110 }
111
112 // Action to move up and down lines of object
113 include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php';
114 if ($cancel) {
115 if (!empty($backtopage)) {
116 header("Location: " . $backtopage);
117 exit;
118 }
119 $action = '';
120 }
121
122 // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen
123 include DOL_DOCUMENT_ROOT.'/core/actions_addupdatedelete.inc.php';
124
125 // Action to move up and down lines of object
126 if ($action == 'up' && $permissiontoedit) {
127 $object->line_up(GETPOST('rowid'), false);
128
129 header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id.'#'.GETPOST('rowid'));
130 exit();
131 } elseif ($action == 'down' && $permissiontoedit) {
132 $object->line_down(GETPOST('rowid'), false);
133
134 header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id.'#'.GETPOST('rowid'));
135 exit();
136 }
137
138 if ($action == 'addline' && $permissiontoedit) {
139 $line_ref = GETPOST('line_ref', 'alpha');
140 $line_value = GETPOST('line_value', 'alpha');
141
142 $result = $object->addLine($line_ref, $line_value);
143 if ($result > 0) {
144 setEventMessages($langs->trans('RecordSaved'), null, 'mesgs');
145 header("Location: " . $_SERVER['PHP_SELF'] . '?id=' . $object->id);
146 exit();
147 } else {
148 setEventMessages($object->error, $object->errors, 'errors');
149 $action = '';
150 }
151 } elseif ($action == 'updateline' && $permissiontoedit) {
152 $line_ref = GETPOST('line_ref', 'alpha');
153 $line_value = GETPOST('line_value', 'alpha');
154
155 $result = $object->updateLine($lineid, $line_ref, $line_value);
156 if ($result > 0) {
157 setEventMessages($langs->trans('RecordSaved'), null, 'mesgs');
158 header("Location: " . $_SERVER['PHP_SELF'] . '?id=' . $object->id);
159 exit();
160 } else {
161 setEventMessages($object->error, $object->errors, 'errors');
162 $action = 'editline';
163 }
164 }
165}
166
167
168/*
169 * View
170 */
171
172$title = $langs->trans('ProductAttributeName', dol_htmlentities($object->label));
173$help_url = 'EN:Module_Products#Variants';
174llxHeader('', $title, $help_url);
175
176// Part to create
177if ($action == 'create') {
178 print load_fiche_titre($langs->trans("NewObject", $langs->transnoentitiesnoconv("ProductAttribute")), '', 'object_' . $object->picto);
179
180 print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
181 print '<input type="hidden" name="token" value="' . newToken() . '">';
182 print '<input type="hidden" name="action" value="add">';
183 if ($backtopage) {
184 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
185 }
186 if ($backtopageforcancel) {
187 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
188 }
189
190 print dol_get_fiche_head(array(), '');
191
192 print '<table class="border centpercent tableforfieldcreate">' . "\n";
193
194 // Common attributes
195 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_add.tpl.php';
196
197 // Other attributes
198 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_add.tpl.php';
199
200 print '</table>' . "\n";
201
202 print dol_get_fiche_end();
203
204 print '<div class="center">';
205 print '<input type="submit" class="button" name="add" value="' . dol_escape_htmltag($langs->trans("Create")) . '">';
206 print '&nbsp; ';
207 print '<input type="' . ($backtopage ? "submit" : "button") . '" class="button button-cancel" name="cancel" value="' . dol_escape_htmltag($langs->trans("Cancel")) . '"' . ($backtopage ? '' : ' onclick="history.go(-1)"') . '>'; // Cancel for create does not post form if we don't know the backtopage
208 print '</div>';
209
210 print '</form>';
211
212 dol_set_focus('input[name="ref"]');
213} elseif (($id || $ref) && $action == 'edit') {
214 // Part to edit record
215 print load_fiche_titre($langs->trans("ProductAttribute"), '', 'object_' . $object->picto);
216
217 print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
218 print '<input type="hidden" name="token" value="' . newToken() . '">';
219 print '<input type="hidden" name="action" value="update">';
220 print '<input type="hidden" name="id" value="' . $object->id . '">';
221 if ($backtopage) {
222 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
223 }
224 if ($backtopageforcancel) {
225 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
226 }
227
228 print dol_get_fiche_head();
229
230 print '<table class="border centpercent tableforfieldedit">' . "\n";
231
232 // Common attributes
233 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php';
234
235 // Other attributes
236 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_edit.tpl.php';
237
238 $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
239 print $hookmanager->resPrint;
240
241 print '</table>';
242
243 print dol_get_fiche_end();
244
245 print '<div class="center"><input type="submit" class="button button-save" name="save" value="' . $langs->trans("Save") . '">';
246 print ' &nbsp; <input type="submit" class="button button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">';
247 print '</div>';
248
249 print '</form>';
250} elseif ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
251 // Part to show record
252 $res = $object->fetch_optionals();
253
255 print dol_get_fiche_head($head, 'card', $langs->trans("ProductAttribute"), -1, $object->picto);
256
257 $formconfirm = '';
258
259 // Confirmation to delete
260 if ($action == 'delete') {
261 $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeleteMyObject'), $langs->trans('ProductAttributeDeleteDialog'), 'confirm_delete', '', 0, 1);
262 } elseif ($action == 'ask_deleteline') {
263 // Confirmation to delete line
264 $object_value = new ProductAttributeValue($db);
265 if ($object_value->fetch($lineid) > 0) {
266 $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id . '&lineid=' . $lineid, $langs->trans('DeleteLine'), $langs->trans('ProductAttributeValueDeleteDialog', dol_htmlentities($object_value->value), dol_htmlentities($object_value->ref)), 'confirm_deleteline', '', 0, 1);
267 }
268 }
269
270 // Call Hook formConfirm
271 $parameters = array('formConfirm' => $formconfirm, 'lineid' => $lineid);
272 $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
273 if (empty($reshook)) {
274 $formconfirm .= $hookmanager->resPrint;
275 } elseif ($reshook > 0) {
276 $formconfirm = $hookmanager->resPrint;
277 }
278
279 // Print form confirm
280 print $formconfirm;
281
282 // Object card
283 // ------------------------------------------------------------
284 $backtolist = (GETPOST('backtolist') ? GETPOST('backtolist') : DOL_URL_ROOT . '/variants/list.php?leftmenu=?restore_lastsearch_values=1');
285 $linkback = '<a href="' . dol_sanitizeUrl($backtolist) . '">' . $langs->trans("BackToList") . '</a>';
286
287 dol_banner_tab($object, 'id', $linkback);
288
289 print '<div class="fichecenter">';
290 print '<div class="fichehalfleft">';
291 print '<div class="underbanner clearboth"></div>';
292 print '<table class="border centpercent tableforfield">' . "\n";
293
294 // Common attributes
295 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php';
296
297 // Other attributes
298 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
299
300 print '</table>';
301 print '</div>';
302 print '</div>';
303
304 print '<div class="clearboth"></div>';
305
306 print dol_get_fiche_end();
307
308 // Buttons for actions
309 if ($action != 'editline') {
310 print '<div class="tabsAction">' . "\n";
311 $parameters = array();
312 $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
313 if ($reshook < 0) {
314 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
315 }
316
317 if (empty($reshook)) {
318 // Modify
319 print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit', '', $permissiontoedit);
320
321 // Delete (need delete permission, or if draft, just need create/modify permission)
322 print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete', '', $permissiontodelete);
323 }
324 print '</div>' . "\n";
325 }
326
327 /*
328 * Lines
329 */
330 if (!empty($object->table_element_line)) {
331 // Show object lines
332 $result = $object->getLinesArray();
333
334 print load_fiche_titre($langs->trans("PossibleValues") . (!empty($object->lines) ? '<span class="opacitymedium colorblack paddingleft">(' . count($object->lines) . ')</span>' : ''));
335
336 print '<form name="addproduct" id="addproduct" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . (($action != 'editline') ? '' : '#line_' . GETPOSTINT('lineid')) . '" method="POST">
337 <input type="hidden" name="token" value="' . newToken() . '">
338 <input type="hidden" name="action" value="' . (($action != 'editline') ? 'addline' : 'updateline') . '">
339 <input type="hidden" name="mode" value="">
340 <input type="hidden" name="page_y" value="">
341 <input type="hidden" name="id" value="' . $object->id . '">
342 ';
343 if ($backtopage) {
344 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
345 }
346 if ($backtopageforcancel) {
347 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
348 }
349
350 if (!empty($conf->use_javascript_ajax)) {
351 include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php';
352 }
353
354 print '<div class="div-table-responsive-no-min">';
355 if (!empty($object->lines) || ($permissiontoedit && $action != 'selectlines' && $action != 'editline')) {
356 print '<table id="tablelines" class="noborder centpercent">';
357 }
358
359 $object->printObjectLines($action, $mysoc, null, GETPOSTINT('lineid'), 1, '/variants/tpl', ($permissiontoedit ? 1 : 0));
360
361 if (!empty($object->lines) || ($permissiontoedit && $action != 'selectlines' && $action != 'editline')) {
362 print '</table>';
363 }
364 print '</div>';
365
366 print "</form>\n";
367 }
368}
369
370// End of page
371llxFooter();
372$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage standard extra fields.
Class ProductAttribute Used to represent a Product attribute Examples:
Class ProductAttributeValue Used to represent a product attribute value.
llxFooter()
Footer empty.
Definition document.php:107
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_set_focus($selector)
Set focus onto field with selector (similar behaviour of 'autofocus' HTML5 tag)
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
dol_htmlentities($string, $flags=ENT_QUOTES|ENT_SUBSTITUTE, $encoding='UTF-8', $double_encode=false)
Replace htmlentities functions.
dol_sanitizeUrl($stringtoclean, $type=1)
Clean a string to use it as an URL (into a href or src attribute)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
productAttributePrepareHead($object)
Prepare array with list of tabs.