dolibarr 24.0.0-beta
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 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20// Protection to avoid direct call of template
21if (empty($conf) || !is_object($conf)) {
22 print "Error, template page can't be called as URL";
23 exit(1);
24}
25
26
27print "<!-- BEGIN PHP TEMPLATE fichinter/tpl/linkedobjectblock.tpl.php -->\n";
28
29
30global $user;
31
32$langs = $GLOBALS['langs'];
33'@phan-var-force Translate $langs';
38$linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
39'@phan-var-force Fichinter[] $linkedObjectBlock';
42$langs->load("interventions");
43
44$linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date,ref', 'desc', 0, 0, 1);
45'@phan-var-force Fichinter[] $linkedObjectBlock'; // Repeat because type lost after dol_sort_array)
48$ilink = 0;
49foreach ($linkedObjectBlock as $key => $objectlink) {
50 $ilink++;
51
52 $objectlink->fetch_thirdparty();
53
54 $refWithThirdparty = '<span class="small">';
55 $refWithThirdparty .= $objectlink->thirdparty->getNomUrl(1);
56 $refWithThirdparty .= '</span>';
57
58 $trclass = 'oddeven';
59 if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
60 $trclass .= ' liste_sub_total';
61 } ?>
62 <tr class="<?php echo $trclass; ?>">
63 <td><?php echo $langs->trans("Intervention"); ?></td>
64 <td><?php echo $objectlink->getNomUrl(1); ?></td>
65 <td class="nopaddingtopimp nopaddingbottomimp"><?php echo $refWithThirdparty; ?></td>
66 <td class="center"><?php echo dol_print_date($objectlink->datev, 'day'); ?></td>
67 <td></td>
68 <td class="right"><?php echo $objectlink->getLibStatut(3); ?></td>
69 <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>
70 </tr>
71 <?php
72}
73
74print "<!-- 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_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...
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).