dolibarr 21.0.0-alpha
admin_extrafields_view.tpl.php
1<?php
2/* Copyright (C) 2010-2018 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2012-2021 Regis Houssin <regis.houssin@inodbox.com>
4 * Copyright (C) 2018-2023 Frédéric France <frederic.france@netlogic.fr>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
21/* To call this template, you must define
22 * $textobject
23 * $langs
24 * $extrafield
25 * $elementtype
26 */
27
28// Protection to avoid direct call of template
29if (empty($langs) || !is_object($langs)) {
30 print "Error, template page can't be called as URL";
31 exit(1);
32}
33global $action, $form, $langs;
34
35$langs->load("modulebuilder");
36
37if ($action == 'delete') {
38 $attributekey = GETPOST('attrname', 'aZ09');
39 print $form->formconfirm($_SERVER['PHP_SELF']."?attrname=$attributekey", $langs->trans("DeleteExtrafield"), $langs->trans("ConfirmDeleteExtrafield", $attributekey), "confirm_delete", '', 0, 1);
40}
41
42?>
43
44<!-- BEGIN PHP TEMPLATE admin_extrafields_view.tpl.php -->
45<?php
46
47$title = '<span class="opacitymedium">'.$langs->trans("DefineHereComplementaryAttributes", empty($textobject) ? '' : $textobject).'</span><br>'."\n";
48//if ($action != 'create' && $action != 'edit') {
49$newcardbutton = '';
50$newcardbutton .= dolGetButtonTitle($langs->trans('NewAttribute'), '', 'fa fa-plus-circle', $_SERVER["PHP_SELF"].'?action=create', '', 1);
51/*} else {
52 $newcardbutton = '';
53}*/
54
55print '<div class="centpercent tagtable marginbottomonly">';
56print '<div class="tagtr">';
57print '<div class="tagtd inline-block valignmiddle hideonsmartphoneimp">'.$title.'</div>';
58print '<div class="tagtd right inline-block valignmiddle"">'.$newcardbutton.'</div>';
59print '</div>';
60print '</div>';
61
62// Load $extrafields->attributes
63$extrafields->fetch_name_optionals_label($elementtype);
64
65print '<div class="div-table-responsive">';
66print '<table summary="listofattributes" class="noborder centpercent small">';
67
68print '<tr class="liste_titre">';
69if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
70 print '<td width="80">&nbsp;</td>';
71}
72print '<td class="left">'.$langs->trans("Position");
73print '<span class="nowrap">';
74print img_picto('A-Z', '1downarrow.png');
75print '</span>';
76print '</td>';
77print '<td>'.$langs->trans("LabelOrTranslationKey").'</td>';
78print '<td>'.$langs->trans("TranslationString").'</td>';
79print '<td>'.$langs->trans("AttributeCode").'</td>';
80print '<td>'.$langs->trans("Type").'</td>';
81print '<td class="right">'.$langs->trans("Size").'</td>';
82print '<td>'.$langs->trans("ComputedFormula").'</td>';
83print '<td class="center">'.$langs->trans("Unique").'</td>';
84print '<td class="center">'.$langs->trans("Mandatory").'</td>';
85print '<td class="center">'.$form->textwithpicto($langs->trans("AlwaysEditable"), $langs->trans("EditableWhenDraftOnly")).'</td>';
86print '<td class="center">'.$form->textwithpicto($langs->trans("Visibility"), $langs->trans("VisibleDesc").'<br><br>'.$langs->trans("ItCanBeAnExpression")).'</td>';
87print '<td class="center">'.$form->textwithpicto($langs->trans("DisplayOnPdf"), $langs->trans("DisplayOnPdfDesc")).'</td>';
88print '<td class="center">'.$form->textwithpicto($langs->trans("Totalizable"), $langs->trans("TotalizableDesc")).'</td>';
89print '<td class="center">'.$form->textwithpicto($langs->trans("CssOnEdit"), $langs->trans("HelpCssOnEditDesc")).'</td>';
90print '<td class="center">'.$form->textwithpicto($langs->trans("CssOnView"), $langs->trans("HelpCssOnViewDesc")).'</td>';
91print '<td class="center">'.$form->textwithpicto($langs->trans("CssOnList"), $langs->trans("HelpCssOnListDesc")).'</td>';
92if (isModEnabled('multicompany')) {
93 print '<td class="center">'.$langs->trans("Entity").'</td>';
94}
95// Action column
96if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
97 print '<td width="80">&nbsp;</td>';
98}
99print "</tr>\n";
100
101if (isset($extrafields->attributes[$elementtype]['type']) && is_array($extrafields->attributes[$elementtype]['type']) && count($extrafields->attributes[$elementtype]['type'])) {
102 foreach ($extrafields->attributes[$elementtype]['type'] as $key => $value) {
103 /*if (! (int) dol_eval($extrafields->attributes[$elementtype]['enabled'][$key], 1, 1, '1')) {
104 // TODO Uncomment this to exclude extrafields of modules not enabled. Add a link to "Show extrafields disabled"
105 // continue;
106 }*/
107
108 // Load language if required
109 if (!empty($extrafields->attributes[$elementtype]['langfile'][$key])) {
110 $langs->load($extrafields->attributes[$elementtype]['langfile'][$key]);
111 }
112
113 print '<tr class="oddeven">';
114 // Actions
115 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
116 print '<td class="center nowraponall">';
117 print '<a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'&attrname='.urlencode($key).'#formeditextrafield">'.img_edit().'</a>';
118 print '&nbsp; <a class="paddingleft" href="'.$_SERVER["PHP_SELF"].'?action=delete&token='.newToken().'&attrname='.urlencode($key).'">'.img_delete().'</a>';
119 if ($extrafields->attributes[$elementtype]['type'][$key] == 'password' && !empty($extrafields->attributes[$elementtype]['param'][$key]['options']) && array_key_exists('dolcrypt', $extrafields->attributes[$elementtype]['param'][$key]['options'])) {
120 print '&nbsp; <a class="aaa" href="'.$_SERVER["PHP_SELF"].'?action=encrypt&token='.newToken().'&attrname='.urlencode($key).'" title="'.dol_escape_htmltag($langs->trans("ReEncryptDesc")).'">'.img_picto('', 'refresh').'</a>';
121 }
122 print '</td>'."\n";
123 }
124 // Position
125 print "<td>".dol_escape_htmltag($extrafields->attributes[$elementtype]['pos'][$key])."</td>\n";
126 // Label
127 print '<td title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['label'][$key]).'" class="tdoverflowmax150">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['label'][$key])."</td>\n"; // We don't translate here, we want admin to know what is the key not translated value
128 // Label translated
129 print '<td class="tdoverflowmax150" title="'.dol_escape_htmltag($langs->transnoentitiesnoconv($extrafields->attributes[$elementtype]['label'][$key])).'">'.dol_escape_htmltag($langs->transnoentitiesnoconv($extrafields->attributes[$elementtype]['label'][$key]))."</td>\n";
130 // Key
131 print '<td title="'.dol_escape_htmltag($key).'" class="tdoverflowmax100">'.dol_escape_htmltag($key)."</td>\n";
132 // Type
133 $typetoshow = $type2label[$extrafields->attributes[$elementtype]['type'][$key]];
134 print '<td title="'.dol_escape_htmltag($typetoshow).'" class="tdoverflowmax100">';
135 print getPictoForType($extrafields->attributes[$elementtype]['type'][$key]);
136 print dol_escape_htmltag($typetoshow);
137 print "</td>\n";
138 // Size
139 print '<td class="right">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['size'][$key])."</td>\n";
140 // Computed field
141 print '<td class="tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['computed'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['computed'][$key])."</td>\n";
142 // Is unique ?
143 print '<td class="center">'.yn($extrafields->attributes[$elementtype]['unique'][$key])."</td>\n";
144 // Is mandatory ?
145 print '<td class="center">'.yn($extrafields->attributes[$elementtype]['required'][$key])."</td>\n";
146 // Can always be editable ?
147 print '<td class="center">'.yn($extrafields->attributes[$elementtype]['alwayseditable'][$key])."</td>\n";
148 // Visible
149 print '<td class="center tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['list'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['list'][$key])."</td>\n";
150 // Print on PDF
151 print '<td class="center tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['printable'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['printable'][$key])."</td>\n";
152 // Summable
153 print '<td class="center">'.yn($extrafields->attributes[$elementtype]['totalizable'][$key])."</td>\n";
154 // CSS
155 print '<td class="center tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['css'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['css'][$key])."</td>\n";
156 // CSS view
157 print '<td class="center tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['cssview'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['cssview'][$key])."</td>\n";
158 // CSS list
159 print '<td class="center tdoverflowmax100" title="'.dol_escape_htmltag($extrafields->attributes[$elementtype]['csslist'][$key]).'">'.dol_escape_htmltag($extrafields->attributes[$elementtype]['csslist'][$key])."</td>\n";
160 // Multicompany
161 if (isModEnabled('multicompany')) {
162 print '<td class="center">';
163 if (empty($extrafields->attributes[$elementtype]['entityid'][$key])) {
164 print $langs->trans("All");
165 } else {
166 global $multicompanylabel_cache;
167 if (!is_array($multicompanylabel_cache)) {
168 $multicompanylabel_cache = array();
169 }
170 if (empty($multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]])) {
171 global $mc;
172 if (is_object($mc) && method_exists($mc, 'getInfo')) {
173 $mc->getInfo($extrafields->attributes[$elementtype]['entityid'][$key]);
174 $multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]] = $mc->label ? $mc->label : $extrafields->attributes[$elementtype]['entityid'][$key];
175 }
176 }
177 print $multicompanylabel_cache[$extrafields->attributes[$elementtype]['entityid'][$key]];
178 }
179 print '</td>';
180 }
181 // Actions
182 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
183 print '<td class="right nowraponall">';
184 print '<a class="editfielda" href="'.$_SERVER["PHP_SELF"].'?action=edit&token='.newToken().'&attrname='.urlencode($key).'#formeditextrafield">'.img_edit().'</a>';
185 print '&nbsp; <a class="paddingleft" href="'.$_SERVER["PHP_SELF"].'?action=delete&token='.newToken().'&attrname='.urlencode($key).'">'.img_delete().'</a>';
186 if ($extrafields->attributes[$elementtype]['type'][$key] == 'password' && !empty($extrafields->attributes[$elementtype]['param'][$key]['options']) && array_key_exists('dolcrypt', $extrafields->attributes[$elementtype]['param'][$key]['options'])) {
187 print '&nbsp; <a class="aaa" href="'.$_SERVER["PHP_SELF"].'?action=encrypt&token='.newToken().'&attrname='.urlencode($key).'" title="'.dol_escape_htmltag($langs->trans("ReEncryptDesc")).'">'.img_picto('', 'refresh').'</a>';
188 }
189 print '</td>'."\n";
190 }
191 print "</tr>";
192 }
193} else {
194 $colspan = 17;
195 if (isModEnabled('multicompany')) {
196 $colspan++;
197 }
198
199 print '<tr class="oddeven">';
200 print '<td colspan="'.$colspan.'"><span class="opacitymedium">';
201 print $langs->trans("None");
202 print '</span></td>';
203 print '</tr>';
204}
205
206print "</table>";
207print '</div>';
208?>
209<!-- END PHP TEMPLATE admin_extrafields_view.tpl.php -->
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
getPictoForType($key, $morecss='')
Return the picto for a data type.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
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...