28if (empty($conf) || !is_object($conf)) {
29 print
"Error, template page can't be called as URL";
32if (!is_object($form)) {
33 $form =
new Form($db);
37<!-- BEGIN PHP TEMPLATE commonfields_edit.tpl.php -->
42foreach (
$object->fields as $key => $val) {
44 if (abs($val[
'visible']) != 1 && abs($val[
'visible']) != 3 && abs($val[
'visible']) != 4) {
48 if (array_key_exists(
'enabled', $val) && isset($val[
'enabled']) && !
verifCond($val[
'enabled'])) {
52 print
'<tr class="field_'.$key.
'"><td';
53 print
' class="titlefieldcreate';
54 if (isset($val[
'notnull']) && $val[
'notnull'] > 0) {
55 print
' fieldrequired';
57 if (preg_match(
'/^(text|html)/', $val[
'type'])) {
61 if (!empty($val[
'help'])) {
62 print $form->textwithpicto($langs->trans($val[
'label']), $langs->trans($val[
'help']));
64 print $langs->trans($val[
'label']);
67 print
'<td class="valuefieldcreate">';
69 if (!empty($val[
'picto'])) {
70 print
img_picto(
'', $val[
'picto'],
'', 0, 0, 0,
'',
'pictofixedwidth');
73 if (in_array($val[
'type'], array(
'int',
'integer'))) {
75 } elseif ($val[
'type'] ==
'double') {
77 } elseif (preg_match(
'/^text/', $val[
'type'])) {
78 $tmparray = explode(
':', $val[
'type']);
79 if (!empty($tmparray[1])) {
80 $check = $tmparray[1];
84 $value = GETPOSTISSET($key) ?
GETPOST($key, $check) :
$object->$key;
85 } elseif (preg_match(
'/^html/', $val[
'type'])) {
86 $tmparray = explode(
':', $val[
'type']);
87 if (!empty($tmparray[1])) {
88 $check = $tmparray[1];
90 $check =
'restricthtml';
92 $value = GETPOSTISSET($key) ?
GETPOST($key, $check) :
$object->$key;
93 } elseif (in_array($val[
'type'], array(
'date',
'datetime'))) {
95 } elseif ($val[
'type'] ==
'price') {
97 } elseif ($key ==
'lang') {
99 $value = GETPOSTISSET($key) ?
GETPOST($key,
'aZ09') :
$object->lang;
101 $value = GETPOSTISSET($key) ?
GETPOST($key,
'alpha') :
$object->$key;
104 if (!empty($val[
'noteditable'])) {
105 print
$object->showOutputField($val, $key, $value,
'',
'',
'', 0);
107 if ($key ==
'lang') {
108 print
img_picto(
'',
'language',
'class="pictofixedwidth"');
109 print $formadmin->select_language($value, $key, 0, array(), 1, 0, 0,
'minwidth300', 2);
111 print
$object->showInputField($val, $key, $value,
'',
'',
'', 0);
119<!-- END PHP TEMPLATE commonfields_edit.tpl.php -->
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
verifCond($strToEvaluate, $onlysimplestring='1')
Verify if condition in string is ok or not.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.