dolibarr  17.0.4
expensereport.lib.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
3  * Copyright (C) 2022 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  * or see https://www.gnu.org/
18  */
19 
31 function expensereport_prepare_head($object)
32 {
33  global $db, $langs, $conf;
34 
35  $h = 0;
36  $head = array();
37 
38  $head[$h][0] = DOL_URL_ROOT.'/expensereport/card.php?id='.$object->id;
39  $head[$h][1] = $langs->trans("ExpenseReport");
40  $head[$h][2] = 'card';
41  $h++;
42 
43  // Show more tabs from modules
44  // Entries must be declared in modules descriptor with line
45  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
46  // $this->tabs = array('entity:-tabname); to remove a tab
47  complete_head_from_modules($conf, $langs, $object, $head, $h, 'expensereport', 'add', 'core');
48 
49  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
50  require_once DOL_DOCUMENT_ROOT.'/core/class/link.class.php';
51  $upload_dir = $conf->expensereport->dir_output."/".dol_sanitizeFileName($object->ref);
52  $nbFiles = count(dol_dir_list($upload_dir, 'files', 0, '', '(\.meta|_preview.*\.png)$'));
53  $nbLinks = Link::count($db, $object->element, $object->id);
54  $head[$h][0] = DOL_URL_ROOT.'/expensereport/document.php?id='.$object->id;
55  $head[$h][1] = $langs->trans('Documents');
56  if (($nbFiles + $nbLinks) > 0) {
57  $head[$h][1] .= '<span class="badge marginleftonlyshort">'.($nbFiles + $nbLinks).'</span>';
58  }
59  $head[$h][2] = 'documents';
60  $h++;
61 
62  if (empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
63  $nbNote = 0;
64  if (!empty($object->note_private)) {
65  $nbNote++;
66  }
67  if (!empty($object->note_public)) {
68  $nbNote++;
69  }
70  $head[$h][0] = DOL_URL_ROOT.'/expensereport/note.php?id='.$object->id;
71  $head[$h][1] = $langs->trans('Notes');
72  if ($nbNote > 0) {
73  $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbNote.'</span>';
74  }
75  $head[$h][2] = 'note';
76  $h++;
77  }
78 
79  $head[$h][0] = DOL_URL_ROOT.'/expensereport/info.php?id='.$object->id;
80  $head[$h][1] = $langs->trans("Info");
81  $head[$h][2] = 'info';
82  $h++;
83 
84  complete_head_from_modules($conf, $langs, $object, $head, $h, 'expensereport', 'add', 'external');
85 
86  complete_head_from_modules($conf, $langs, $object, $head, $h, 'expensereport', 'remove');
87 
88  return $head;
89 }
90 
99 {
100 
101  global $langs, $conf;
102 
103  $h = 0;
104  $head = array();
105 
106  $head[$h][0] = DOL_URL_ROOT.'/expensereport/payment/card.php?id='.$object->id;
107  $head[$h][1] = $langs->trans("ExpenseReportPayment");
108  $head[$h][2] = 'payment';
109  $h++;
110 
111  // Show more tabs from modules
112  // Entries must be declared in modules descriptor with line
113  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
114  // $this->tabs = array('entity:-tabname); to remove a tab
115  complete_head_from_modules($conf, $langs, $object, $head, $h, 'payment_expensereport');
116 
117  $head[$h][0] = DOL_URL_ROOT.'/expensereport/payment/info.php?id='.$object->id;
118  $head[$h][1] = $langs->trans("Info");
119  $head[$h][2] = 'info';
120  $h++;
121 
122  complete_head_from_modules($conf, $langs, $object, $head, $h, 'payment_expensereport', 'remove');
123 
124  return $head;
125 }
126 
133 {
134  global $langs, $conf, $user, $db;
135 
136  $h = 0;
137  $head = array();
138 
139  $extrafields = new ExtraFields($db);
140  $extrafields->fetch_name_optionals_label('expensereport');
141 
142  $h = 0;
143 
144  $head[$h][0] = DOL_URL_ROOT."/admin/expensereport.php";
145  $head[$h][1] = $langs->trans("ExpenseReports");
146  $head[$h][2] = 'expensereport';
147  $h++;
148 
149  $head[$h][0] = DOL_URL_ROOT."/admin/expensereport_rules.php";
150  $head[$h][1] = $langs->trans("ExpenseReportsRules");
151  $head[$h][2] = 'expenserules';
152  $h++;
153 
154  if (!empty($conf->global->MAIN_USE_EXPENSE_IK)) {
155  $head[$h][0] = DOL_URL_ROOT."/admin/expensereport_ik.php";
156  $head[$h][1] = $langs->trans("ExpenseReportsIk");
157  $head[$h][2] = 'expenseik';
158  $h++;
159  }
160 
161  // Show more tabs from modules
162  // Entries must be declared in modules descriptor with line
163  // $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
164  // $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
165  complete_head_from_modules($conf, $langs, null, $head, $h, 'expensereport_admin');
166 
167  $head[$h][0] = DOL_URL_ROOT.'/admin/expensereport_extrafields.php';
168  $head[$h][1] = $langs->trans("ExtraFields");
169  $nbExtrafields = $extrafields->attributes['expensereport']['count'];
170  if ($nbExtrafields > 0) {
171  $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
172  }
173  $head[$h][2] = 'attributes';
174  $h++;
175 
176  /*
177  $head[$h][0] = DOL_URL_ROOT.'/fichinter/admin/fichinterdet_extrafields.php';
178  $head[$h][1] = $langs->trans("ExtraFieldsLines");
179  $head[$h][2] = 'attributesdet';
180  $h++;
181  */
182 
183  complete_head_from_modules($conf, $langs, null, $head, $h, 'expensereport_admin', 'remove');
184 
185  return $head;
186 }
Class to manage standard extra fields.
Class to manage payments of expense report.
expensereport_prepare_head($object)
Prepare array with list of tabs.
payment_expensereport_prepare_head(PaymentExpenseReport $object)
Returns an array with the tabs for the "Expense report payment" section It loads tabs from modules lo...
expensereport_admin_prepare_head()
Return array head with list of tabs to view object informations.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:61
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).