dolibarr 24.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-2025 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';
42$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
43'@phan-var-force MyObject[] $linkedObjectBlock';
46// Load translation files required by the page
47$langs->load("mymodule");
48
49$total = 0;
50$ilink = 0;
51foreach ($linkedObjectBlock as $key => $objectlink) {
52 $ilink++;
53
54 $trclass = 'oddeven';
55 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
56 $trclass .= ' liste_sub_total';
57 } ?>
58<tr class="<?php echo $trclass; ?>">
59 <td><?php echo $langs->trans("MyObject"); ?></td>
60 <td><?php echo $objectlink->getNomUrl(1); ?></td>
61 <td></td>
62 <td class="center"><?php echo dol_print_date($objectlink->date_creation, 'day'); ?></td>
63 <td class="right"><?php echo ''; ?></td>
64 <td class="right"><?php echo $objectlink->getLibStatut(7); ?></td>
65 <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>
66</tr>
67 <?php
68}
69
70print "<!-- END PHP TEMPLATE -->\n";
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).