dolibarr  13.0.2
linkedobjectblock_myobject.tpl.php
1 <?php
2 /* Copyright (C) 2019 Laurent Destailleur <eldy@users.sourceforge.net>
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 global $noMoreLinkedObjectBlockAfter;
31 
32 $langs = $GLOBALS['langs'];
33 $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
34 
35 // Load translation files required by the page
36 $langs->load("mymodule");
37 
38 $total = 0; $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("MyObject"); ?></td>
48  <td><?php echo $objectlink->getNomUrl(1); ?></td>
49  <td></td>
50  <td class="center"><?php echo dol_print_date($objectlink->date, 'day'); ?></td>
51  <td class="right"><?php echo ''; ?></td>
52  <td class="right"><?php echo $objectlink->getLibStatut(7); ?></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)
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).