dolibarr 21.0.0-alpha
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 Frédéric France <frederic.france@netlogic.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
32// Load translation files required by the page
33$langs->loadLangs(array('products'));
34
35$id = GETPOSTINT('id');
36$ref = GETPOST('ref', 'alpha');
37$action = GETPOST('action', 'aZ09');
38$confirm = GETPOST('confirm', 'alpha');
39$cancel = GETPOST('cancel', 'alpha');
40$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'productattribute'; // To manage different context of search
41$backtopage = GETPOST('backtopage', 'alpha');
42$backtopageforcancel = GETPOST('backtopageforcancel', 'alpha');
43$lineid = GETPOST('lineid', 'alpha');
44
45// Security check
46if (!isModEnabled('variants')) {
47 accessforbidden('Module not enabled');
48}
49if ($user->socid > 0) { // Protection if external user
51}
52
53// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
54$hookmanager->initHooks(array('productattributecard', 'globalcard'));
55
56$result = restrictedArea($user, 'variants');
57
58$object = new ProductAttribute($db);
59
60// Load object
61include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be 'include', not 'include_once'
62
63$permissiontoread = $user->hasRight('variants', 'read');
64$permissiontoadd = $user->hasRight('variants', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
65$permissiontoedit = $user->hasRight('variants', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_lineupdown.inc.php
66$permissiontodelete = $user->hasRight('variants', 'delete');
67
68$error = 0;
69
70
71/*
72 * Actions
73 */
74
75
76$parameters = array();
77// Note that $action and $object may be modified by some hooks
78$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action);
79if ($reshook < 0) {
80 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
81}
82
83if (empty($reshook)) {
84 $error = 0;
85
86 $backurlforlist = dol_buildpath('/variants/list.php', 1);
87
88 if (empty($backtopage) || ($cancel && empty($id))) {
89 if (empty($backtopage) || ($cancel && strpos($backtopage, '__ID__'))) {
90 if (empty($id) && (($action != 'add' && $action != 'create') || $cancel)) {
91 $backtopage = $backurlforlist;
92 } else {
93 $backtopage = dol_buildpath('/variants/card.php', 1).'?id='.((!empty($id) && $id > 0) ? $id : '__ID__');
94 }
95 }
96 }
97
98 // Action to move up and down lines of object
99 include DOL_DOCUMENT_ROOT.'/core/actions_lineupdown.inc.php';
100 if ($cancel) {
101 if (!empty($backtopage)) {
102 header("Location: " . $backtopage);
103 exit;
104 }
105 $action = '';
106 }
107
108 // Actions cancel, add, update, update_extras, confirm_validate, confirm_delete, confirm_deleteline, confirm_clone, confirm_close, confirm_setdraft, confirm_reopen
109 include DOL_DOCUMENT_ROOT.'/core/actions_addupdatedelete.inc.php';
110
111 // Action to move up and down lines of object
112 if ($action == 'up' && $permissiontoedit) {
113 $object->line_up(GETPOST('rowid'), false);
114
115 header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id.'#'.GETPOST('rowid'));
116 exit();
117 } elseif ($action == 'down' && $permissiontoedit) {
118 $object->line_down(GETPOST('rowid'), false);
119
120 header('Location: '.$_SERVER["PHP_SELF"].'?id='.$object->id.'#'.GETPOST('rowid'));
121 exit();
122 }
123
124 if ($action == 'addline' && $permissiontoedit) {
125 $line_ref = GETPOST('line_ref', 'alpha');
126 $line_value = GETPOST('line_value', 'alpha');
127
128 $result = $object->addLine($line_ref, $line_value);
129 if ($result > 0) {
130 setEventMessages($langs->trans('RecordSaved'), null, 'mesgs');
131 header("Location: " . $_SERVER['PHP_SELF'] . '?id=' . $object->id);
132 exit();
133 } else {
134 setEventMessages($object->error, $object->errors, 'errors');
135 $action = '';
136 }
137 } elseif ($action == 'updateline' && $permissiontoedit) {
138 $line_ref = GETPOST('line_ref', 'alpha');
139 $line_value = GETPOST('line_value', 'alpha');
140
141 $result = $object->updateLine($lineid, $line_ref, $line_value);
142 if ($result > 0) {
143 setEventMessages($langs->trans('RecordSaved'), null, 'mesgs');
144 header("Location: " . $_SERVER['PHP_SELF'] . '?id=' . $object->id);
145 exit();
146 } else {
147 setEventMessages($object->error, $object->errors, 'errors');
148 $action = 'editline';
149 }
150 }
151}
152
153
154/*
155 * View
156 */
157
158$title = $langs->trans('ProductAttributeName', dol_htmlentities($object->label));
159$help_url = 'EN:Module_Products#Variants';
160llxHeader('', $title, $help_url);
161
162// Part to create
163if ($action == 'create') {
164 print load_fiche_titre($langs->trans("NewObject", $langs->transnoentitiesnoconv("ProductAttribute")), '', 'object_' . $object->picto);
165
166 print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
167 print '<input type="hidden" name="token" value="' . newToken() . '">';
168 print '<input type="hidden" name="action" value="add">';
169 if ($backtopage) {
170 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
171 }
172 if ($backtopageforcancel) {
173 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
174 }
175
176 print dol_get_fiche_head(array(), '');
177
178 print '<table class="border centpercent tableforfieldcreate">' . "\n";
179
180 // Common attributes
181 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_add.tpl.php';
182
183 print '</table>' . "\n";
184
185 print dol_get_fiche_end();
186
187 print '<div class="center">';
188 print '<input type="submit" class="button" name="add" value="' . dol_escape_htmltag($langs->trans("Create")) . '">';
189 print '&nbsp; ';
190 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
191 print '</div>';
192
193 print '</form>';
194
195 dol_set_focus('input[name="ref"]');
196} elseif (($id || $ref) && $action == 'edit') {
197 // Part to edit record
198 print load_fiche_titre($langs->trans("ProductAttribute"), '', 'object_' . $object->picto);
199
200 print '<form method="POST" action="' . $_SERVER["PHP_SELF"] . '">';
201 print '<input type="hidden" name="token" value="' . newToken() . '">';
202 print '<input type="hidden" name="action" value="update">';
203 print '<input type="hidden" name="id" value="' . $object->id . '">';
204 if ($backtopage) {
205 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
206 }
207 if ($backtopageforcancel) {
208 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
209 }
210
211 print dol_get_fiche_head();
212
213 print '<table class="border centpercent tableforfieldedit">' . "\n";
214
215 // Common attributes
216 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_edit.tpl.php';
217
218 $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
219 print $hookmanager->resPrint;
220
221 print '</table>';
222
223 print dol_get_fiche_end();
224
225 print '<div class="center"><input type="submit" class="button button-save" name="save" value="' . $langs->trans("Save") . '">';
226 print ' &nbsp; <input type="submit" class="button button-cancel" name="cancel" value="' . $langs->trans("Cancel") . '">';
227 print '</div>';
228
229 print '</form>';
230} elseif ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
231 // Part to show record
232 $res = $object->fetch_optionals();
233
235 print dol_get_fiche_head($head, 'card', $langs->trans("ProductAttribute"), -1, $object->picto);
236
237 $formconfirm = '';
238
239 // Confirmation to delete
240 if ($action == 'delete') {
241 $formconfirm = $form->formconfirm($_SERVER["PHP_SELF"] . '?id=' . $object->id, $langs->trans('DeleteMyObject'), $langs->trans('ProductAttributeDeleteDialog'), 'confirm_delete', '', 0, 1);
242 } elseif ($action == 'ask_deleteline') {
243 // Confirmation to delete line
244 $object_value = new ProductAttributeValue($db);
245 if ($object_value->fetch($lineid) > 0) {
246 $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);
247 }
248 }
249
250 // Call Hook formConfirm
251 $parameters = array('formConfirm' => $formconfirm, 'lineid' => $lineid);
252 $reshook = $hookmanager->executeHooks('formConfirm', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
253 if (empty($reshook)) {
254 $formconfirm .= $hookmanager->resPrint;
255 } elseif ($reshook > 0) {
256 $formconfirm = $hookmanager->resPrint;
257 }
258
259 // Print form confirm
260 print $formconfirm;
261
262 // Object card
263 // ------------------------------------------------------------
264 $backtolist = (GETPOST('backtolist') ? GETPOST('backtolist') : DOL_URL_ROOT . '/variants/list.php?leftmenu=?restore_lastsearch_values=1');
265 $linkback = '<a href="' . dol_sanitizeUrl($backtolist) . '">' . $langs->trans("BackToList") . '</a>';
266
267 dol_banner_tab($object, 'id', $linkback);
268
269 print '<div class="fichecenter">';
270 print '<div class="fichehalfleft">';
271 print '<div class="underbanner clearboth"></div>';
272 print '<table class="border centpercent tableforfield">' . "\n";
273
274 // Common attributes
275 include DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php';
276
277 print '</table>';
278 print '</div>';
279 print '</div>';
280
281 print '<div class="clearboth"></div>';
282
283 print dol_get_fiche_end();
284
285 // Buttons for actions
286 if ($action != 'editline') {
287 print '<div class="tabsAction">' . "\n";
288 $parameters = array();
289 $reshook = $hookmanager->executeHooks('addMoreActionsButtons', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
290 if ($reshook < 0) {
291 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
292 }
293
294 if (empty($reshook)) {
295 // Modify
296 print dolGetButtonAction($langs->trans('Modify'), '', 'default', $_SERVER["PHP_SELF"] . '?id=' . $object->id . '&action=edit', '', $permissiontoedit);
297
298 // Delete (need delete permission, or if draft, just need create/modify permission)
299 print dolGetButtonAction($langs->trans('Delete'), '', 'delete', $_SERVER['PHP_SELF'] . '?id=' . $object->id . '&action=delete', '', $permissiontodelete);
300 }
301 print '</div>' . "\n";
302 }
303
304 /*
305 * Lines
306 */
307 if (!empty($object->table_element_line)) {
308 // Show object lines
309 $result = $object->getLinesArray();
310
311 print load_fiche_titre($langs->trans("PossibleValues") . (!empty($object->lines) ? '<span class="opacitymedium colorblack paddingleft">(' . count($object->lines) . ')</span>' : ''));
312
313 print ' <form name="addproduct" id="addproduct" action="' . $_SERVER["PHP_SELF"] . '?id=' . $object->id . (($action != 'editline') ? '' : '#line_' . GETPOSTINT('lineid')) . '" method="POST">
314 <input type="hidden" name="token" value="' . newToken() . '">
315 <input type="hidden" name="action" value="' . (($action != 'editline') ? 'addline' : 'updateline') . '">
316 <input type="hidden" name="mode" value="">
317 <input type="hidden" name="page_y" value="">
318 <input type="hidden" name="id" value="' . $object->id . '">
319 ';
320 if ($backtopage) {
321 print '<input type="hidden" name="backtopage" value="' . $backtopage . '">';
322 }
323 if ($backtopageforcancel) {
324 print '<input type="hidden" name="backtopageforcancel" value="' . $backtopageforcancel . '">';
325 }
326
327 if (!empty($conf->use_javascript_ajax)) {
328 include DOL_DOCUMENT_ROOT . '/core/tpl/ajaxrow.tpl.php';
329 }
330
331 print '<div class="div-table-responsive-no-min">';
332 if (!empty($object->lines) || ($permissiontoedit && $action != 'selectlines' && $action != 'editline')) {
333 print '<table id="tablelines" class="noborder centpercent">';
334 }
335
336 $object->printObjectLines($action, $mysoc, null, GETPOSTINT('lineid'), 1, '/variants/tpl', ($permissiontoedit ? 1 : 0));
337
338 if (!empty($object->lines) || ($permissiontoedit && $action != 'selectlines' && $action != 'editline')) {
339 print '</table>';
340 }
341 print '</div>';
342
343 print "</form>\n";
344 }
345}
346
347// End of page
348llxFooter();
349$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
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:70
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...
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.