dolibarr 19.0.3
note.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2015 Regis Houssin <regis.houssin@inodbox.com>
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';
28require_once DOL_DOCUMENT_ROOT.'/core/lib/usergroups.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
30
31// Get parameters
32$id = GETPOST('id', 'int');
33$action = GETPOST('action', 'aZ09');
34$contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : 'usernote'; // To manage different context of search
35
36if (!isset($id) || empty($id)) {
38}
39
40// Load translation files required by page
41$langs->loadLangs(array('companies', 'members', 'bills', 'users'));
42
43$object = new User($db);
44$object->fetch($id, '', '', 1);
45$object->getrights();
46
47// If user is not user read and no permission to read other users, we stop
48if (($object->id != $user->id) && (!$user->hasRight("user", "user", "read"))) {
50}
51
52// Permissions
53$permissionnote = $user->hasRight("user", "self", "write"); // Used by the include of actions_setnotes.inc.php
54
55// Security check
56$socid = 0;
57if ($user->socid > 0) {
58 $socid = $user->socid;
59}
60$feature2 = (($socid && $user->hasRight("user", "self", "write")) ? '' : 'user');
61
62$result = restrictedArea($user, 'user', $id, 'user&user', $feature2);
63
64// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
65$hookmanager->initHooks(array('usercard', 'usernote', 'globalcard'));
66
67
68/*
69 * Actions
70 */
71$parameters = array('id'=>$socid);
72$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
73if ($reshook < 0) {
74 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
75}
76if (empty($reshook)) {
77 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
78}
79
80
81/*
82 * View
83 */
84
85llxHeader();
86
87$form = new Form($db);
88
89if ($id) {
90 $head = user_prepare_head($object);
91
92 $title = $langs->trans("User");
93 print dol_get_fiche_head($head, 'note', $title, -1, 'user');
94
95 $linkback = '';
96
97 if ($user->hasRight("user", "user", "read") || $user->admin) {
98 $linkback = '<a href="'.DOL_URL_ROOT.'/user/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
99 }
100
101 $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">';
102 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
103 $morehtmlref .= '</a>';
104
105 $urltovirtualcard = '/user/virtualcard.php?id='.((int) $object->id);
106 $morehtmlref .= dolButtonToOpenUrlInDialogPopup('publicvirtualcard', $langs->transnoentitiesnoconv("PublicVirtualCardUrl").' - '.$object->getFullName($langs), img_picto($langs->trans("PublicVirtualCardUrl"), 'card', 'class="valignmiddle marginleftonly paddingrightonly"'), $urltovirtualcard, '', 'nohover');
107
108 dol_banner_tab($object, 'id', $linkback, $user->hasRight("user", "user", "read") || $user->admin, 'rowid', 'ref', $morehtmlref);
109
110 print '<div class="underbanner clearboth"></div>';
111
112 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
113 print '<input type="hidden" name="token" value="'.newToken().'">';
114
115 print '<div class="fichecenter">';
116 print '<table class="border centpercent tableforfield">';
117
118 // Login
119 print '<tr><td class="titlefield">'.$langs->trans("Login").'</td>';
120 if (!empty($object->ldap_sid) && $object->statut == 0) {
121 print '<td class="error">';
122 print $langs->trans("LoginAccountDisableInDolibarr");
123 print '</td>';
124 } else {
125 print '<td>';
126 $addadmin = '';
127 if (property_exists($object, 'admin')) {
128 if (isModEnabled('multicompany') && !empty($object->admin) && empty($object->entity)) {
129 $addadmin .= img_picto($langs->trans("SuperAdministratorDesc"), "redstar", 'class="paddingleft"');
130 } elseif (!empty($object->admin)) {
131 $addadmin .= img_picto($langs->trans("AdministratorDesc"), "star", 'class="paddingleft"');
132 }
133 }
134 print showValueWithClipboardCPButton($object->login).$addadmin;
135 print '</td>';
136 }
137 print '</tr>';
138
139 print "</table>";
140
141 print '</div>';
142
143
144 //print '<br>';
145
146 //print '<div class="underbanner clearboth"></div>';
147 include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
148
149 print dol_get_fiche_end();
150} else {
151 $langs->load("errors");
152 print $langs->trans("ErrorRecordNotFound");
153}
154
155// End of page
156llxFooter();
157$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage generation of HTML components Only common components must be here.
Class to manage Dolibarr users.
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.
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.