dolibarr 24.0.0-beta
availabilities_document.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2007-2024 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
4 * Copyright (C) 2024-2026 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26// Load Dolibarr environment
27require '../main.inc.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
38require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
39require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
40require_once DOL_DOCUMENT_ROOT.'/bookcal/class/availabilities.class.php';
41require_once DOL_DOCUMENT_ROOT.'/bookcal/lib/bookcal_availabilities.lib.php';
42
43// Load translation files required by the page
44$langs->loadLangs(array("agenda", "companies", "other", "mails"));
45
46
47$action = GETPOST('action', 'aZ09');
48$confirm = GETPOST('confirm');
49$id = (GETPOSTINT('socid') ? GETPOSTINT('socid') : GETPOSTINT('id'));
50$ref = GETPOST('ref', 'alpha');
51
52// Get parameters
53$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
54$sortfield = GETPOST('sortfield', 'aZ09comma');
55$sortorder = GETPOST('sortorder', 'aZ09comma');
56$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
57if (empty($page) || $page == -1) {
58 $page = 0;
59} // If $page is not defined, or '' or -1
60$offset = $limit * $page;
61$pageprev = $page - 1;
62$pagenext = $page + 1;
63if (!$sortorder) {
64 $sortorder = "ASC";
65}
66if (!$sortfield) {
67 $sortfield = "name";
68}
69//if (! $sortfield) $sortfield="position_name";
70
71// Initialize a technical objects
73$diroutputmassaction = $conf->bookcal->dir_output.'/temp/massgeneration/'.$user->id;
74$hookmanager->initHooks(array('availabilitiesdocument', 'globalcard')); // Note that conf->hooks_modules contains array
75// Fetch optionals attributes and labels
76$extrafields->fetch_name_optionals_label($object->table_element);
77
78// Load object
79include DOL_DOCUMENT_ROOT.'/core/actions_fetchobject.inc.php'; // Must be 'include', not 'include_once'. Include fetch and fetch_thirdparty but not fetch_optionals
80
81$upload_dir = null;
82if ($id > 0 || !empty($ref)) {
83 $upload_dir = $conf->bookcal->multidir_output[$object->entity ? $object->entity : $conf->entity]."/availabilities/".get_exdir(0, 0, 0, 1, $object);
84}
85
86$permissiontoread = $user->hasRight('bookcal', 'availabilities', 'read');
87$permissiontoadd = $user->hasRight('bookcal', 'availabilities', 'write'); // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles.inc.php
88
89// Security check (enable the most restrictive one)
90//if ($user->socid > 0) accessforbidden();
91//if ($user->socid > 0) $socid = $user->socid;
92//$isdraft = (($object->status == $object::STATUS_DRAFT) ? 1 : 0);
93//restrictedArea($user, $object->element, $object->id, $object->table_element, '', 'fk_soc', 'rowid', $isdraft);
94if (!isModEnabled('bookcal')) {
96}
97if (!$permissiontoread) {
99}
100
101
102/*
103 * Actions
104 */
105
106include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
107
108
109/*
110 * View
111 */
112
113$form = new Form($db);
114
115$title = $langs->trans("Availabilities").' - '.$langs->trans("Files");
116$help_url = '';
117//$help_url='EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
118llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-bookcal page-card_availabilities_document');
119
120if ($object->id && $upload_dir !== null) {
121 /*
122 * Show tabs
123 */
124 $head = availabilitiesPrepareHead($object);
125
126 print dol_get_fiche_head($head, 'document', $langs->trans("Availabilities"), -1, $object->picto);
127
128
129 // Build file list
130 $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
131 $totalsize = 0;
132 foreach ($filearray as $key => $file) {
133 $totalsize += $file['size'];
134 }
135
136 // Object card
137 // ------------------------------------------------------------
138 $linkback = '<a href="'.dol_buildpath('/bookcal/availabilities_list.php', 1).'?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
139
140 $morehtmlref = '<div class="refidno">';
141 /*
142 // Ref customer
143 $morehtmlref.=$form->editfieldkey("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', 0, 1);
144 $morehtmlref.=$form->editfieldval("RefCustomer", 'ref_client', $object->ref_client, $object, 0, 'string', '', null, null, '', 1);
145 // Thirdparty
146 $morehtmlref.='<br>'.$langs->trans('ThirdParty') . ' : ' . (is_object($object->thirdparty) ? $object->thirdparty->getNomUrl(1) : '');
147 // Project
148 if (isModEnabled('project'))
149 {
150 $langs->load("projects");
151 $morehtmlref.='<br>'.$langs->trans('Project') . ' ';
152 if ($permissiontoadd)
153 {
154 if ($action != 'classify')
155 //$morehtmlref.='<a class="editfielda" href="' . dolBuildUrl($_SERVER['PHP_SELF'], ['action' => 'classify', 'id' => $object->id], true) . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
156 $morehtmlref.=' : ';
157 if ($action == 'classify') {
158 //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
159 $morehtmlref.='<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
160 $morehtmlref.='<input type="hidden" name="action" value="classin">';
161 $morehtmlref.='<input type="hidden" name="token" value="'.newToken().'">';
162 $morehtmlref.=$formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
163 $morehtmlref.='<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
164 $morehtmlref.='</form>';
165 } else {
166 $morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
167 }
168 } else {
169 if (! empty($object->fk_project)) {
170 $proj = new Project($db);
171 $proj->fetch($object->fk_project);
172 $morehtmlref .= ': '.$proj->getNomUrl();
173 } else {
174 $morehtmlref .= '';
175 }
176 }
177 }*/
178 $morehtmlref .= '</div>';
179
180 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
181
182 print '<div class="fichecenter">';
183
184 print '<div class="underbanner clearboth"></div>';
185 print '<table class="border centpercent tableforfield">';
186
187 // Number of files
188 print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
189
190 // Total size
191 print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.$totalsize.' '.$langs->trans("bytes").'</td></tr>';
192
193 print '</table>';
194
195 print '</div>';
196
197 print dol_get_fiche_end();
198
199 $modulepart = 'bookcal';
200 $param = '&id='.$object->id;
201
202 //$relativepathwithnofile='availabilities/' . dol_sanitizeFileName($object->id).'/';
203 $relativepathwithnofile = 'availabilities/'.dol_sanitizeFileName($object->ref).'/';
204
205 include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
206} else {
207 accessforbidden('', 0, 1);
208}
209
210// End of page
211llxFooter();
212$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:47
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
availabilitiesPrepareHead($object)
Prepare array of tabs for Availabilities.
Class for Availabilities.
Class to manage generation of HTML components Only common components must be here.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
dol_dir_list($utf8_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:64
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
isModEnabled($module)
Is Dolibarr module enabled.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.