dolibarr  13.0.2
linkedobjectblock.tpl.php
1 <?php
2 /* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
18 // Protection to avoid direct call of template
19 if (empty($conf) || !is_object($conf))
20 {
21  print "Error, template page can't be called as URL";
22  exit;
23 }
24 
25 
26 print "<!-- BEGIN PHP TEMPLATE -->\n";
27 
28 
29 global $user;
30 
31 $langs = $GLOBALS['langs'];
32 $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
33 
34 $langs->load("interventions");
35 
36 $linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date', 'desc', 0, 0, 1);
37 
38 $ilink = 0;
39 foreach ($linkedObjectBlock as $key => $objectlink)
40 {
41  $ilink++;
42 
43  $trclass = 'oddeven';
44  if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) $trclass .= ' liste_sub_total';
45  ?>
46  <tr class="<?php echo $trclass; ?>">
47  <td><?php echo $langs->trans("Intervention"); ?></td>
48  <td><?php echo $objectlink->getNomUrl(1); ?></td>
49  <td></td>
50  <td class="center"><?php echo dol_print_date($objectlink->datev, 'day'); ?></td>
51  <td></td>
52  <td class="right"><?php echo $objectlink->getLibStatut(3); ?></td>
53  <td class="right"><a class="reposition" href="<?php echo $_SERVER["PHP_SELF"].'?id='.$object->id.'&action=dellink&dellinkid='.$key; ?>"><?php echo img_picto($langs->transnoentitiesnoconv("RemoveLink"), 'unlink'); ?></a></td>
54  </tr>
55  <?php
56 }
57 
58 print "<!-- END PHP TEMPLATE -->\n";
img_picto($titlealt, $picto, $moreatt= '', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt= '', $morecss= '', $marginleftonlyshort=2)
Show picto whatever it&#39;s its name (generic function)
dol_sort_array(&$array, $index, $order= 'asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by second index function, which produces ascending (default) or descending output...
print
Draft customers invoices.
Definition: index.php:89
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).