dolibarr  19.0.0-dev
document.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2002-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2015 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
6  * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
28 // Load Dolibarr environment
29 require '../main.inc.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
32 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
34 
35 // Load translation files required by page
36 $langs->loadLangs(array('users', 'other'));
37 
38 $action = GETPOST('action', 'aZ09');
39 $confirm = GETPOST('confirm');
40 $id = (GETPOST('userid', 'int') ? GETPOST('userid', 'int') : GETPOST('id', 'int'));
41 $ref = GETPOST('ref', 'alpha');
42 $contextpage = GETPOST('contextpage', 'aZ') ?GETPOST('contextpage', 'aZ') : 'userdoc'; // To manage different context of search
43 
44 if (!isset($id) || empty($id)) {
46 }
47 
48 // Define value to know what current user can do on users
49 $canadduser = (!empty($user->admin) || $user->hasRight("user", "user", "write"));
50 $canreaduser = (!empty($user->admin) || $user->hasRight("user", "user", "read"));
51 $canedituser = (!empty($user->admin) || $user->hasRight("user", "user", "write"));
52 $candisableuser = (!empty($user->admin) || $user->hasRight("user", "user", "delete"));
53 $canreadgroup = $canreaduser;
54 $caneditgroup = $canedituser;
55 if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
56  $canreadgroup = (!empty($user->admin) || $user->hasRight("user", "group_advance", "read"));
57  $caneditgroup = (!empty($user->admin) || $user->hasRight("user", "group_advance", "write"));
58 }
59 // Define value to know what current user can do on properties of edited user
60 if ($id) {
61  // $user est le user qui edite, $id est l'id de l'utilisateur edite
62  $caneditfield = ((($user->id == $id) && $user->hasRight("user", "self", "write"))
63  || (($user->id != $id) && $user->hasRight("user", "user", "write")));
64  $caneditpassword = ((($user->id == $id) && $user->hasRight("user", "self", "password"))
65  || (($user->id != $id) && $user->hasRight("user", "user", "passsword")));
66 }
67 
68 $permissiontoadd = $caneditfield; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles
69 $permtoedit = $caneditfield;
70 
71 // Security check
72 $socid = 0;
73 if ($user->socid > 0) {
74  $socid = $user->socid;
75 }
76 $feature2 = 'user';
77 
78 $result = restrictedArea($user, 'user', $id, 'user&user', $feature2);
79 
80 if ($user->id <> $id && !$canreaduser) {
82 }
83 
84 // Get parameters
85 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
86 $sortfield = GETPOST('sortfield', 'aZ09comma');
87 $sortorder = GETPOST('sortorder', 'aZ09comma');
88 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
89 if (empty($page) || $page == -1) {
90  $page = 0;
91 }
92 $offset = $limit * $page;
93 $pageprev = $page - 1;
94 $pagenext = $page + 1;
95 if (!$sortorder) {
96  $sortorder = "ASC";
97 }
98 if (!$sortfield) {
99  $sortfield = "position_name";
100 }
101 
102 $object = new User($db);
103 if ($id > 0 || !empty($ref)) {
104  $result = $object->fetch($id, $ref, '', 1);
105  $object->getrights();
106  //$upload_dir = $conf->user->multidir_output[$object->entity] . "/" . $object->id ;
107  // For users, the upload_dir is always $conf->user->entity for the moment
108  $upload_dir = $conf->user->dir_output."/".$object->id;
109 }
110 
111 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
112 $hookmanager->initHooks(array('usercard', 'userdoc', 'globalcard'));
113 
114 
115 
116 /*
117  * Actions
118  */
119 
120 $parameters = array('id'=>$socid);
121 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
122 if ($reshook < 0) {
123  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
124 }
125 
126 if (empty($reshook)) {
127  include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
128 }
129 
130 
131 /*
132  * View
133  */
134 
135 $form = new Form($db);
136 
137 
138 $person_name = !empty($object->firstname) ? $object->lastname.", ".$object->firstname : $object->lastname;
139 $title = $person_name." - ".$langs->trans('Documents');
140 $help_url = '';
141 llxHeader('', $title, $help_url);
142 
143 if ($object->id) {
144  /*
145  * Affichage onglets
146  */
147  if (isModEnabled('notification')) {
148  $langs->load("mails");
149  }
150  $head = user_prepare_head($object);
151 
152  print dol_get_fiche_head($head, 'document', $langs->trans("User"), -1, 'user');
153 
154  $linkback = '';
155  if ($user->hasRight("user", "user", "read") || $user->admin) {
156  $linkback = '<a href="'.DOL_URL_ROOT.'/user/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
157  }
158 
159  $morehtmlref = '<a href="'.DOL_URL_ROOT.'/user/vcard.php?id='.$object->id.'&output=file&file='.urlencode(dol_sanitizeFileName($object->getFullName($langs).'.vcf')).'" class="refid" rel="noopener">';
160  $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
161  $morehtmlref .= '</a>';
162 
163  $urltovirtualcard = '/user/virtualcard.php?id='.((int) $object->id);
164  $morehtmlref .= dolButtonToOpenUrlInDialogPopup('publicvirtualcard', $langs->trans("PublicVirtualCardUrl").' - '.$object->getFullName($langs), img_picto($langs->trans("PublicVirtualCardUrl"), 'card', 'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard, '', 'nohover');
165 
166  dol_banner_tab($object, 'id', $linkback, $user->hasRight("user", "user", "read") || $user->admin, 'rowid', 'ref', $morehtmlref);
167 
168  print '<div class="fichecenter">';
169  print '<div class="underbanner clearboth"></div>';
170 
171  // Build file list
172  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
173  $totalsize = 0;
174  foreach ($filearray as $key => $file) {
175  $totalsize += $file['size'];
176  }
177 
178 
179  print '<table class="border tableforfield centpercent">';
180 
181  // Login
182  print '<tr><td class="titlefield">'.$langs->trans("Login").'</td>';
183  if (!empty($object->ldap_sid) && $object->statut == 0) {
184  print '<td class="error">';
185  print $langs->trans("LoginAccountDisableInDolibarr");
186  print '</td>';
187  } else {
188  print '<td>';
189  $addadmin = '';
190  if (property_exists($object, 'admin')) {
191  if (isModEnabled('multicompany') && !empty($object->admin) && empty($object->entity)) {
192  $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
193  } elseif (!empty($object->admin)) {
194  $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
195  }
196  }
197  print showValueWithClipboardCPButton($object->login).$addadmin;
198  print '</td>';
199  }
200  print '</tr>';
201 
202  // Nunber of files
203  print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td>'.count($filearray).'</td></tr>';
204 
205  // Total size
206  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td>'.dol_print_size($totalsize, 1, 1).'</td></tr>';
207 
208  print '</table>';
209  print '</div>';
210 
211  print dol_get_fiche_end();
212 
213  $modulepart = 'user';
214  $param = '&id='.$object->id;
215  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
216 } else {
217  accessforbidden('', 0, 1);
218 }
219 
220 // End of page
221 llxFooter();
222 $db->close();
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:118
Class to manage generation of HTML components Only common components must be here.
Class to manage Dolibarr users.
Definition: user.class.php:48
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(isset($_GET["hashp"]) &&!defined("NOLOGIN")) if((isset($_GET["modulepart"]) && $_GET["modulepart"]=='medias')) llxHeader()
Header empty.
Definition: document.php:82
llxFooter()
Footer empty.
Definition: document.php:91
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:62
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dolButtonToOpenUrlInDialogPopup($name, $label, $buttonstring, $url, $disabled='', $morecss='classlink button bordertransp', $jsonopen='', $backtopagejsfields='', $accesskey='')
Return HTML code to output a button to open a dialog popup box.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
isModEnabled($module)
Is Dolibarr module enabled.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
user_prepare_head(User $object)
Prepare array with list of tabs.