dolibarr 21.0.0-beta
linkedobjectblock_myobject.tpl.php
1<?php
2/* Copyright (C) 2019 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) ---Replace with your own copyright and developer email---
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
26// Protection to avoid direct call of template
27if (empty($conf) || !is_object($conf)) {
28 print "Error, template page can't be called as URL";
29 exit(1);
30}
31
32
33print "<!-- BEGIN PHP TEMPLATE mymodule/core/tpl/linkedobjectblock_myobject.tpl.php -->\n";
34
35
36global $user;
37global $noMoreLinkedObjectBlockAfter;
38
39$langs = $GLOBALS['langs'];
40'@phan-var-force Translate $langs';
41$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
42'@phan-var-force array<string,MyObject> $linkedObjectBlock';
43
44// Load translation files required by the page
45$langs->load("mymodule");
46
47$total = 0;
48$ilink = 0;
49foreach ($linkedObjectBlock as $key => $objectlink) {
50 $ilink++;
51
52 $trclass = 'oddeven';
53 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
54 $trclass .= ' liste_sub_total';
55 } ?>
56<tr class="<?php echo $trclass; ?>">
57 <td><?php echo $langs->trans("MyObject"); ?></td>
58 <td><?php echo $objectlink->getNomUrl(1); ?></td>
59 <td></td>
60 <td class="center"><?php echo dol_print_date($objectlink->date_creation, 'day'); ?></td>
61 <td class="right"><?php echo ''; ?></td>
62 <td class="right"><?php echo $objectlink->getLibStatut(7); ?></td>
63 <td class="right"><a class="reposition" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=dellink&token='.newToken().'&dellinkid='.$key; ?>"><?php echo img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink'); ?></a></td>
64</tr>
65 <?php
66}
67
68print "<!-- END PHP TEMPLATE -->\n";
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
$objectlink
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79