35'@phan-var-force FormAdmin $formadmin';
39 print
"Error, template page can't be called as URL";
44<!-- BEGIN PHP TEMPLATE commonfields_add.tpl.php -->
49foreach (
$object->fields as $key => $val) {
52 $visible = (int) $val[
'visible'];
53 if (abs($visible) != 1 && abs($visible) != 3) {
57 if (array_key_exists(
'enabled', $val) && isset($val[
'enabled']) && !
verifCond($val[
'enabled'])) {
61 print
'<tr class="field_'.$key.
'">';
63 print
' class="titlefieldcreate';
64 if (isset($val[
'notnull']) && $val[
'notnull'] > 0) {
65 print
' fieldrequired';
67 if ($val[
'type'] ==
'text' || $val[
'type'] ==
'html') {
72 if (!empty($val[
'help'])) {
73 print $form->textwithpicto($langs->trans($val[
'label']), $langs->trans($val[
'help']));
75 print $langs->trans($val[
'label']);
78 print
'<td class="valuefieldcreate">';
79 if (!empty($val[
'picto'])) {
80 print
img_picto(
'', $val[
'picto'],
'', 0, 0, 0,
'',
'pictofixedwidth');
82 if (in_array($val[
'type'], array(
'int',
'integer'))) {
84 } elseif ($val[
'type'] ==
'double') {
86 } elseif (preg_match(
'/^text/', $val[
'type'])) {
87 $tmparray = explode(
':', $val[
'type']);
88 if (!empty($tmparray[1])) {
89 $check = $tmparray[1];
94 } elseif (preg_match(
'/^html/', $val[
'type'])) {
95 $tmparray = explode(
':', $val[
'type']);
96 if (!empty($tmparray[1])) {
97 $check = $tmparray[1];
99 $check =
'restricthtml';
101 $value =
GETPOST($key, $check);
102 } elseif ($val[
'type'] ==
'date') {
104 } elseif ($val[
'type'] ==
'datetime') {
106 } elseif ($val[
'type'] ==
'boolean') {
107 $value = (
GETPOST($key) ==
'on' ? 1 : 0);
108 } elseif ($val[
'type'] ==
'price') {
110 } elseif ($key ==
'lang') {
111 $value =
GETPOST($key,
'aZ09');
113 $value =
GETPOST($key,
'alphanohtml');
115 if (!empty($val[
'noteditable'])) {
116 print
$object->showOutputField($val, $key, $value,
'',
'',
'', 0);
118 if ($key ==
'lang') {
119 print
img_picto(
'',
'language',
'class="pictofixedwidth"');
120 print $formadmin->select_language($value, $key, 0, array(), 1, 0, 0,
'minwidth300', 2);
122 print
$object->showInputField($val, $key, $value,
'',
'',
'', 0);
130<!-- END PHP TEMPLATE commonfields_add.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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...