dolibarr 21.0.0-beta
skilldet.fiche.tpl.php
1<?php
2/* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
27// Protection to avoid direct call of template
28if (empty($object) || !is_object($object)) {
29 print "Error, template page can't be called as URL";
30 exit(1);
31}
32
33if (!empty($object->table_element_line)) {
34 // Show object lines
35 $result = $object->getLinesArray();
36}
37
38// Supposed provided before includion of the tpl
39'
40@phan-var-force string $note_public
41@phan-var-force string $note_private
42@phan-var-force int $colwidth
43@phan-var-force string $moreparam
44@phan-var-force bool $permission
45@phan-var-force string $typeofdata
46@phan-var-force string $value_public
47@phan-var-force string $value_private
48';
49
50
51print '<!-- BEGIN PHP TEMPLATE hrm/core/tpl/skilldet.fiche.tpl.php -->'."\n";
52
53print '<div class="tagtable border table-border tableforfield centpercent">'."\n";
54print '<div class="tagtr table-border-row">'."\n";
55$editmode = (GETPOST('action', 'aZ09') == 'edit'.$note_public);
56print '<div class="tagtd tagtdnote tdtop'.($editmode ? '' : ' sensiblehtmlcontent').' table-key-border-col'.(empty($cssclass) ? '' : ' '.$cssclass).'"'.($colwidth ? ' style="width: '.$colwidth.'%"' : '').'>'."\n";
57print $form->editfieldkey("NotePublic", $note_public, $value_public, $object, $permission, $typeofdata, $moreparam, 0, 0);
58print '</div>'."\n";
59print '<div class="tagtd wordbreak table-val-border-col'.($editmode ? '' : ' sensiblehtmlcontent').'">'."\n";
60print $form->editfieldval("NotePublic", $note_public, $value_public, $object, $permission, $typeofdata, '', null, null, $moreparam, 1)."\n";
61print '</div>'."\n";
62print '</div>'."\n";
63if (empty($user->socid)) {
64 // Private notes (always hidden to external users)
65 print '<div class="tagtr table-border-row">'."\n";
66 $editmode = (GETPOST('action', 'aZ09') == 'edit'.$note_private);
67 print '<div class="tagtd tagtdnote tdtop'.($editmode ? '' : ' sensiblehtmlcontent').' table-key-border-col'.(empty($cssclass) ? '' : ' '.$cssclass).'"'.($colwidth ? ' style="width: '.$colwidth.'%"' : '').'>'."\n";
68 print $form->editfieldkey("NotePrivate", $note_private, $value_private, $object, $permission, $typeofdata, $moreparam, 0, 0);
69 print '</div>'."\n";
70 print '<div class="tagtd wordbreak table-val-border-col'.($editmode ? '' : ' sensiblehtmlcontent').'">'."\n";
71 print $form->editfieldval("NotePrivate", $note_private, $value_private, $object, $permission, $typeofdata, '', null, null, $moreparam, 1);
72 print '</div>'."\n";
73 print '</div>'."\n";
74}
75print '</div>'."\n";
76?>
77<!-- END PHP TEMPLATE NOTES-->
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.