dolibarr  13.0.2
commonfields_add.tpl.php
1 <?php
2 /* Copyright (C) 2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  *
17  * Need to have following variables defined:
18  * $object (invoice, order, ...)
19  * $action
20  * $conf
21  * $langs
22  * $form
23  */
24 
25 // Protection to avoid direct call of template
26 if (empty($conf) || !is_object($conf))
27 {
28  print "Error, template page can't be called as URL";
29  exit;
30 }
31 
32 ?>
33 <!-- BEGIN PHP TEMPLATE commonfields_add.tpl.php -->
34 <?php
35 
36 $object->fields = dol_sort_array($object->fields, 'position');
37 
38 foreach ($object->fields as $key => $val)
39 {
40  // Discard if extrafield is a hidden field on form
41  if (abs($val['visible']) != 1 && abs($val['visible']) != 3) continue;
42 
43  if (array_key_exists('enabled', $val) && isset($val['enabled']) && !verifCond($val['enabled'])) continue; // We don't want this field
44 
45  print '<tr id="field_'.$key.'">';
46  print '<td';
47  print ' class="titlefieldcreate';
48  if ($val['notnull'] > 0) print ' fieldrequired';
49  if ($val['type'] == 'text' || $val['type'] == 'html') print ' tdtop';
50  print '"';
51  print '>';
52  if (!empty($val['help'])) print $form->textwithpicto($langs->trans($val['label']), $langs->trans($val['help']));
53  else print $langs->trans($val['label']);
54  print '</td>';
55  print '<td>';
56  if (!empty($val['picto'])) { print img_picto('', $val['picto']); }
57  if (in_array($val['type'], array('int', 'integer'))) $value = GETPOST($key, 'int');
58  elseif ($val['type'] == 'text' || $val['type'] == 'html') $value = GETPOST($key, 'restricthtml');
59  elseif ($val['type'] == 'date') $value = dol_mktime(12, 0, 0, GETPOST($key.'month', 'int'), GETPOST($key.'day', 'int'), GETPOST($key.'year', 'int'));
60  elseif ($val['type'] == 'datetime') $value = dol_mktime(GETPOST($key.'hour', 'int'), GETPOST($key.'min', 'int'), 0, GETPOST($key.'month', 'int'), GETPOST($key.'day', 'int'), GETPOST($key.'year', 'int'));
61  elseif ($val['type'] == 'boolean') $value = (GETPOST($key) == 'on' ? 1 : 0);
62  else $value = GETPOST($key, 'alphanohtml');
63  if ($val['noteditable']) print $object->showOutputField($val, $key, $value, '', '', '', 0);
64  else print $object->showInputField($val, $key, $value, '', '', '', 0);
65  print '</td>';
66  print '</tr>';
67 }
68 
69 ?>
70 <!-- END PHP TEMPLATE commonfields_add.tpl.php -->
verifCond($strRights)
Verify if condition in string is ok or not.
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm= 'auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it&#39;s its name (generic function)
if(!GETPOST('transkey', 'alphanohtml')&&!GETPOST('transphrase', 'alphanohtml')) else
View.
Definition: notice.php:44
dol_sort_array(&$array, $index, $order= 'asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
print
Draft customers invoices.
Definition: index.php:89
if(!defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN'
Draft customers invoices.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:105