dolibarr 21.0.0-alpha
linkedobjectblock.tpl.php
1<?php
2/* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
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
19// Protection to avoid direct call of template
20if (empty($conf) || !is_object($conf)) {
21 print "Error, template page can't be called as URL";
22 exit(1);
23}
24
25
26print "<!-- BEGIN PHP TEMPLATE fichinter/tpl/linkedobjectblock.tpl.php -->\n";
27
28
29global $user;
30
31$langs = $GLOBALS['langs'];
32'@phan-var-force Translate $langs';
33$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
34'@phan-var-force CommonObject[] $linkedObjectBlock';
35
36$langs->load("interventions");
37
38$linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date', 'desc', 0, 0, 1);
39'@phan-var-force CommonObject[] $linkedObjectBlock'; // Repeat because type lost after dol_sort_array)
40
41$ilink = 0;
42foreach ($linkedObjectBlock as $key => $objectlink) {
43 $ilink++;
44
45 $trclass = 'oddeven';
46 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
47 $trclass .= ' liste_sub_total';
48 } ?>
49 <tr class="<?php echo $trclass; ?>">
50 <td><?php echo $langs->trans("Intervention"); ?></td>
51 <td><?php echo $objectlink->getNomUrl(1); ?></td>
52 <td></td>
53 <td class="center"><?php echo dol_print_date($objectlink->datev, 'day'); ?></td>
54 <td></td>
55 <td class="right"><?php echo $objectlink->getLibStatut(3); ?></td>
56 <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>
57 </tr>
58 <?php
59}
60
61print "<!-- 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).
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
$objectlink