rollerstorage.lib.php 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?php
  2. /* Copyright (C) 2023 László Szollősi
  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. * \file rollerstorage/lib/rollerstorage.lib.php
  19. * \ingroup rollerstorage
  20. * \brief Library files with common functions for Rollerstorage
  21. */
  22. /**
  23. * Prepare admin pages header
  24. *
  25. * @return array
  26. */
  27. function rollerstorageAdminPrepareHead()
  28. {
  29. global $langs, $conf;
  30. // global $db;
  31. // $extrafields = new ExtraFields($db);
  32. // $extrafields->fetch_name_optionals_label('myobject');
  33. $langs->load("rollerstorage@rollerstorage");
  34. $h = 0;
  35. $head = array();
  36. $head[$h][0] = dol_buildpath("/rollerstorage/admin/setup.php", 1);
  37. $head[$h][1] = $langs->trans("Settings");
  38. $head[$h][2] = 'settings';
  39. $h++;
  40. /*
  41. $head[$h][0] = dol_buildpath("/rollerstorage/admin/myobject_extrafields.php", 1);
  42. $head[$h][1] = $langs->trans("ExtraFields");
  43. $nbExtrafields = is_countable($extrafields->attributes['myobject']['label']) ? count($extrafields->attributes['myobject']['label']) : 0;
  44. if ($nbExtrafields > 0) {
  45. $head[$h][1] .= ' <span class="badge">' . $nbExtrafields . '</span>';
  46. }
  47. $head[$h][2] = 'myobject_extrafields';
  48. $h++;
  49. */
  50. $head[$h][0] = dol_buildpath("/rollerstorage/admin/about.php", 1);
  51. $head[$h][1] = $langs->trans("About");
  52. $head[$h][2] = 'about';
  53. $h++;
  54. // Show more tabs from modules
  55. // Entries must be declared in modules descriptor with line
  56. //$this->tabs = array(
  57. // 'entity:+tabname:Title:@rollerstorage:/rollerstorage/mypage.php?id=__ID__'
  58. //); // to add new tab
  59. //$this->tabs = array(
  60. // 'entity:-tabname:Title:@rollerstorage:/rollerstorage/mypage.php?id=__ID__'
  61. //); // to remove a tab
  62. complete_head_from_modules($conf, $langs, null, $head, $h, 'rollerstorage@rollerstorage');
  63. complete_head_from_modules($conf, $langs, null, $head, $h, 'rollerstorage@rollerstorage', 'remove');
  64. return $head;
  65. }