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';
36 $langs->loadLangs(array(
'users',
'other'));
38 $action =
GETPOST(
'action',
'aZ09');
42 $contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'userdoc';
45 $canadduser = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"write"));
46 $canreaduser = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"read"));
47 $canedituser = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"write"));
48 $candisableuser = (!empty($user->admin) || $user->hasRight(
"user",
"user",
"delete"));
49 $canreadgroup = $canreaduser;
50 $caneditgroup = $canedituser;
51 if (!empty($conf->global->MAIN_USE_ADVANCED_PERMS)) {
52 $canreadgroup = (!empty($user->admin) || $user->hasRight(
"user",
"group_advance",
"read"));
53 $caneditgroup = (!empty($user->admin) || $user->hasRight(
"user",
"group_advance",
"write"));
58 $caneditfield = ((($user->id == $id) && $user->hasRight(
"user",
"self",
"write"))
59 || (($user->id != $id) && $user->hasRight(
"user",
"user",
"write")));
60 $caneditpassword = ((($user->id == $id) && $user->hasRight(
"user",
"self",
"password"))
61 || (($user->id != $id) && $user->hasRight(
"user",
"user",
"passsword")));
64 $permissiontoadd = $caneditfield;
65 $permtoedit = $caneditfield;
69 if ($user->socid > 0) {
70 $socid = $user->socid;
74 $result =
restrictedArea($user,
'user', $id,
'user&user', $feature2);
76 if ($user->id <> $id && !$canreaduser) {
81 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
82 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
83 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
85 if (empty($page) || $page == -1) {
88 $offset = $limit * $page;
89 $pageprev = $page - 1;
90 $pagenext = $page + 1;
95 $sortfield =
"position_name";
98 $object =
new User($db);
99 if ($id > 0 || !empty($ref)) {
100 $result = $object->fetch($id, $ref,
'', 1);
101 $object->getrights();
104 $upload_dir = $conf->user->dir_output.
"/".$object->id;
108 $hookmanager->initHooks(array(
'usercard',
'userdoc',
'globalcard'));
116 $parameters = array(
'id'=>$socid);
117 $reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
122 if (empty($reshook)) {
123 include DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
134 $person_name = !empty($object->firstname) ? $object->lastname.
", ".$object->firstname : $object->lastname;
135 $title = $person_name.
" - ".$langs->trans(
'Documents');
144 $langs->load(
"mails");
151 if ($user->hasRight(
"user",
"user",
"read") || $user->admin) {
152 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
155 $morehtmlref =
'<a href="'.DOL_URL_ROOT.
'/user/vcard.php?id='.$object->id.
'" class="refid">';
156 $morehtmlref .=
img_picto($langs->trans(
"Download").
' '.$langs->trans(
"VCard"),
'vcard.png',
'class="valignmiddle marginleftonly paddingrightonly"');
157 $morehtmlref .=
'</a>';
159 dol_banner_tab($object,
'id', $linkback, $user->hasRight(
"user",
"user",
"read") || $user->admin,
'rowid',
'ref', $morehtmlref);
161 print
'<div class="fichecenter">';
162 print
'<div class="underbanner clearboth"></div>';
165 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
167 foreach ($filearray as $key => $file) {
168 $totalsize += $file[
'size'];
172 print
'<table class="border tableforfield centpercent">';
175 print
'<tr><td class="titlefield">'.$langs->trans(
"Login").
'</td>';
176 if (!empty($object->ldap_sid) && $object->statut == 0) {
177 print
'<td class="error">';
178 print $langs->trans(
"LoginAccountDisableInDolibarr");
183 if (property_exists($object,
'admin')) {
184 if (
isModEnabled(
'multicompany') && !empty($object->admin) && empty($object->entity)) {
185 $addadmin .=
img_picto($langs->trans(
"SuperAdministratorDesc"),
"redstar",
'class="paddingleft"');
186 } elseif (!empty($object->admin)) {
187 $addadmin .=
img_picto($langs->trans(
"AdministratorDesc"),
"star",
'class="paddingleft"');
196 print
'<tr><td>'.$langs->trans(
"NbOfAttachedFiles").
'</td><td>'.count($filearray).
'</td></tr>';
199 print
'<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td>'.
dol_print_size($totalsize, 1, 1).
'</td></tr>';
206 $modulepart =
'user';
207 $param =
'&id='.$object->id;
208 include DOL_DOCUMENT_ROOT.
'/core/tpl/document_actions_post_headers.tpl.php';
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.
Class to manage Dolibarr users.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
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.
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_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.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
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.
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.