dolibarr  13.0.2
admin_extrafields_view.tpl.php
1 <?php
2 /* Copyright (C) 2010-2018 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2012-2017 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2018-2019 Frédéric France <frederic.france@netlogic.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 
20 /* To call this template, you must define
21  * $textobject
22  * $langs
23  * $extrafield
24  * $elementtype
25  */
26 
27 // Protection to avoid direct call of template
28 if (empty($langs) || !is_object($langs))
29 {
30  print "Error, template page can't be called as URL";
31  exit;
32 }
33 
34 
35 $langs->load("modulebuilder");
36 
37 ?>
38 
39 <!-- BEGIN PHP TEMPLATE admin_extrafields_view.tpl.php -->
40 <?php
41 
42 print '<span class="opacitymedium">'.$langs->trans("DefineHereComplementaryAttributes", $textobject).'</span><br>'."\n";
43 print '<br>';
44 
45 // Load attribute_label
46 $extrafields->fetch_name_optionals_label($elementtype);
47 
48 print '<div class="div-table-responsive">';
49 print '<table summary="listofattributes" class="noborder centpercent">';
50 
51 print '<tr class="liste_titre">';
52 print '<td class="left">'.$langs->trans("Position");
53 print '<span class="nowrap">';
54 print img_picto('A-Z', '1downarrow.png');
55 print '</span>';
56 print '</td>';
57 print '<td>'.$langs->trans("LabelOrTranslationKey").'</td>';
58 print '<td>'.$langs->trans("TranslationString").'</td>';
59 print '<td>'.$langs->trans("AttributeCode").'</td>';
60 print '<td>'.$langs->trans("Type").'</td>';
61 print '<td class="right">'.$langs->trans("Size").'</td>';
62 print '<td>'.$langs->trans("ComputedFormula").'</td>';
63 print '<td class="center">'.$langs->trans("Unique").'</td>';
64 print '<td class="center">'.$langs->trans("Required").'</td>';
65 print '<td class="center">'.$langs->trans("AlwaysEditable").'</td>';
66 print '<td class="center">'.$form->textwithpicto($langs->trans("Visible"), $langs->trans("VisibleDesc")).'</td>';
67 print '<td class="center">'.$form->textwithpicto($langs->trans("DisplayOnPdf"), $langs->trans("DisplayOnPdfDesc")).'</td>';
68 print '<td class="center">'.$form->textwithpicto($langs->trans("Totalizable"), $langs->trans("TotalizableDesc")).'</td>';
69 if ($conf->multicompany->enabled) {
70  print '<td class="center">'.$langs->trans("Entities").'</td>';
71 }
72 print '<td width="80">&nbsp;</td>';
73 print "</tr>\n";
74 
75 if (is_array($extrafields->attributes[$elementtype]['type']) && count($extrafields->attributes[$elementtype]['type']))
76 {
77  foreach ($extrafields->attributes[$elementtype]['type'] as $key => $value)
78  {
79  /*if (! dol_eval($extrafields->attributes[$elementtype]['enabled'][$key], 1)) {
80  // TODO Uncomment this to exclude extrafields of modules not enabled. Add a link to "Show extrafields disabled"
81  // continue;
82  }*/
83 
84  // Load language if required
85  if (!empty($extrafields->attributes[$elementtype]['langfile'][$key])) {
86  $langs->load($extrafields->attributes[$elementtype]['langfile'][$key]);
87  }
88 
89  print '<tr class="oddeven">';
90  print "<td>".$extrafields->attributes[$elementtype]['pos'][$key]."</td>\n";
91  print "<td>".$extrafields->attributes[$elementtype]['label'][$key]."</td>\n"; // We don't translate here, we want admin to know what is the key not translated value
92  print "<td>".$langs->trans($extrafields->attributes[$elementtype]['label'][$key])."</td>\n";
93  print "<td>".$key."</td>\n";
94  print "<td>".$type2label[$extrafields->attributes[$elementtype]['type'][$key]]."</td>\n";
95  print '<td class="right">'.$extrafields->attributes[$elementtype]['size'][$key]."</td>\n";
96  print '<td>'.dol_trunc($extrafields->attributes[$elementtype]['computed'][$key], 20)."</td>\n";
97  print '<td class="center">'.yn($extrafields->attributes[$elementtype]['unique'][$key])."</td>\n";
98  print '<td class="center">'.yn($extrafields->attributes[$elementtype]['required'][$key])."</td>\n";
99  print '<td class="center">'.yn($extrafields->attributes[$elementtype]['alwayseditable'][$key])."</td>\n";
100  print '<td class="center">'.$extrafields->attributes[$elementtype]['list'][$key]."</td>\n";
101  print '<td class="center">'.$extrafields->attributes[$elementtype]['printable'][$key]."</td>\n";
102  print '<td class="center">'.yn($extrafields->attributes[$elementtype]['totalizable'][$key])."</td>\n";
103  if (!empty($conf->multicompany->enabled)) {
104  print '<td class="center">';
105  if (empty($extrafields->attributes[$elementtype]['entityid'][$key]))
106  {
107  print $langs->trans("All");
108  } else {
109  global $multicompanylabel_cache;
110  if (!is_array($multicompanylabel_cache)) $multicompanylabel_cache = array();
111  if (empty($multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]])) {
112  global $mc;
113  $mc->getInfo($extrafields->attributes[$elementtype]['entityid'][$key]);
114  $multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]] = $mc->label ? $mc->label : $extrafields->attributes[$elementtype]['entityid'][$key];
115  }
116  print $multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]];
117  }
118  print '</td>';
119  }
120  print '<td class="right nowraponall"><a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'&attrname='.$key.'#formeditextrafield">'.img_edit().'</a>';
121  print '&nbsp; <a class="paddingleft" href="'.$_SERVER["PHP_SELF"].'?action=delete&token='.newToken().'&attrname='.$key.'">'.img_delete().'</a></td>'."\n";
122  print "</tr>";
123  }
124 } else {
125  $colspan = 13;
126  if (!empty($conf->multicompany->enabled)) $colspan++;
127 
128  print '<tr class="oddeven">';
129  print '<td class="opacitymedium" colspan="'.$colspan.'">';
130  print $langs->trans("None");
131  print '</td>';
132  print '</tr>';
133 }
134 
135 print "</table>";
136 print '</div>';
137 ?>
138 <!-- END PHP TEMPLATE admin_extrafields_view.tpl.php -->
img_edit($titlealt= 'default', $float=0, $other= '')
Show logo editer/modifier fiche.
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)
print
Draft customers invoices.
Definition: index.php:89
newToken()
Return the value of token currently saved into session with name &#39;newtoken&#39;.
img_delete($titlealt= 'default', $other= 'class="pictodelete"', $morecss= '')
Show delete logo.