33 global $db, $langs, $conf;
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';
49 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
50 require_once DOL_DOCUMENT_ROOT.
'/core/class/link.class.php';
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>';
59 $head[$h][2] =
'documents';
62 if (empty($conf->global->MAIN_DISABLE_NOTES_TAB)) {
64 if (!empty($object->note_private)) {
67 if (!empty($object->note_public)) {
70 $head[$h][0] = DOL_URL_ROOT.
'/expensereport/note.php?id='.$object->id;
71 $head[$h][1] = $langs->trans(
'Notes');
73 $head[$h][1] .=
'<span class="badge marginleftonlyshort">'.$nbNote.
'</span>';
75 $head[$h][2] =
'note';
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';
101 global $langs, $conf;
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';
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';
134 global $langs, $conf, $user, $db;
140 $extrafields->fetch_name_optionals_label(
'expensereport');
144 $head[$h][0] = DOL_URL_ROOT.
"/admin/expensereport.php";
145 $head[$h][1] = $langs->trans(
"ExpenseReports");
146 $head[$h][2] =
'expensereport';
149 $head[$h][0] = DOL_URL_ROOT.
"/admin/expensereport_rules.php";
150 $head[$h][1] = $langs->trans(
"ExpenseReportsRules");
151 $head[$h][2] =
'expenserules';
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';
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>';
173 $head[$h][2] =
'attributes';
static count($dbs, $objecttype, $objectid)
Return nb of links.
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.
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).