linkedobjectblock.tpl.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. // Protection to avoid direct call of template
  18. if (empty($conf) || !is_object($conf)) {
  19. print "Error, template page can't be called as URL";
  20. exit;
  21. }
  22. print "<!-- BEGIN PHP TEMPLATE -->\n";
  23. global $user;
  24. $langs = $GLOBALS['langs'];
  25. $linkedObjectBlock = $GLOBALS['linkedObjectBlock'];
  26. $langs->load("interventions");
  27. $linkedObjectBlock = dol_sort_array($linkedObjectBlock, 'date', 'desc', 0, 0, 1);
  28. $ilink = 0;
  29. foreach ($linkedObjectBlock as $key => $objectlink) {
  30. $ilink++;
  31. $trclass = 'oddeven';
  32. if ($ilink == count($linkedObjectBlock) && empty($noMoreLinkedObjectBlockAfter) && count($linkedObjectBlock) <= 1) {
  33. $trclass .= ' liste_sub_total';
  34. }
  35. ?>
  36. <tr class="<?php echo $trclass; ?>">
  37. <td><?php echo $langs->trans("Intervention"); ?></td>
  38. <td><?php echo $objectlink->getNomUrl(1); ?></td>
  39. <td></td>
  40. <td class="center"><?php echo dol_print_date($objectlink->datev, 'day'); ?></td>
  41. <td></td>
  42. <td class="right"><?php echo $objectlink->getLibStatut(3); ?></td>
  43. <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>
  44. </tr>
  45. <?php
  46. }
  47. print "<!-- END PHP TEMPLATE -->\n";