dolibarr 21.0.0-alpha
note.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2015-2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
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
29// Load Dolibarr environment
30require '../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
33require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
34
35
36// Load translation files required by the page
37$langs->loadLangs(array("companies", "members", "bills"));
38
39
40// Get parameters
41$action = GETPOST('action', 'aZ09');
42$id = GETPOSTINT('id');
43$ref = GETPOST('ref', 'alphanohtml');
44
45
46// Initialize objects
47$object = new Adherent($db);
48
49$result = $object->fetch($id);
50if ($result > 0) {
51 $adht = new AdherentType($db);
52 $result = $adht->fetch($object->typeid);
53} else {
54 $adht = null;
55}
56
57
58$permissionnote = $user->hasRight('adherent', 'creer'); // Used by the include of actions_setnotes.inc.php
59
60// Fetch object
61if ($id > 0 || !empty($ref)) {
62 // Load member
63 $result = $object->fetch($id, $ref);
64
65 // Define variables to know what current user can do on users
66 $canadduser = ($user->admin || $user->hasRight('user', 'user', 'creer'));
67 // Define variables to know what current user can do on properties of user linked to edited member
68 if ($object->user_id) {
69 // $User is the user who edits, $object->user_id is the id of the related user in the edited member
70 $caneditfielduser = ((($user->id == $object->user_id) && $user->hasRight('user', 'self', 'creer'))
71 || (($user->id != $object->user_id) && $user->hasRight('user', 'user', 'creer')));
72 $caneditpassworduser = ((($user->id == $object->user_id) && $user->hasRight('user', 'self', 'password'))
73 || (($user->id != $object->user_id) && $user->hasRight('user', 'user', 'password')));
74 }
75}
76
77// Define variables to determine what the current user can do on the members
78$canaddmember = $user->hasRight('adherent', 'creer');
79// Define variables to determine what the current user can do on the properties of a member
80if ($id) {
81 $caneditfieldmember = $user->hasRight('adherent', 'creer');
82}
83
84$hookmanager->initHooks(array('membernote'));
85
86// Security check
87$result = restrictedArea($user, 'adherent', $object->id, '', '', 'socid', 'rowid', 0);
88
89/*
90 * Actions
91 */
92$parameters = array();
93$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
94if ($reshook < 0) {
95 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
96}
97if (empty($reshook)) {
98 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be 'include', not 'include_once'
99}
100
101
102/*
103 * View
104 */
105
106$title = $langs->trans("Member")." - ".$langs->trans("Note");
107$help_url = "EN:Module_Foundations|FR:Module_Adh&eacute;rents|ES:M&oacute;dulo_Miembros|DE:Modul_Mitglieder";
108
109llxHeader("", $title, $help_url, '', 0, 0, '', '', '', 'mod-member page-card_note');
110
111$form = new Form($db);
112
113if (is_object($adht)) {
114 $head = member_prepare_head($object);
115
116 print dol_get_fiche_head($head, 'note', $langs->trans("Member"), -1, 'user');
117
118 print '<form method="POST" action="'.$_SERVER['PHP_SELF'].'">';
119 print '<input type="hidden" name="token" value="'.newToken().'">';
120
121 $linkback = '<a href="'.DOL_URL_ROOT.'/adherents/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
122
123 $morehtmlref = '<a href="'.DOL_URL_ROOT.'/adherents/vcard.php?id='.$object->id.'" class="refid">';
124 $morehtmlref .= img_picto($langs->trans("Download").' '.$langs->trans("VCard"), 'vcard.png', 'class="valignmiddle marginleftonly paddingrightonly"');
125 $morehtmlref .= '</a>';
126
127 dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref);
128
129 print '<div class="fichecenter">';
130
131 print '<div class="underbanner clearboth"></div>';
132 print '<table class="border centpercent tableforfield">';
133
134 // Login
135 if (!getDolGlobalString('ADHERENT_LOGIN_NOT_REQUIRED')) {
136 print '<tr><td class="titlefield">'.$langs->trans("Login").' / '.$langs->trans("Id").'</td><td class="valeur">'.dol_escape_htmltag($object->login).'</td></tr>';
137 }
138
139 // Type
140 print '<tr><td>'.$langs->trans("Type").'</td>';
141 print '<td class="valeur">'.$adht->getNomUrl(1)."</td></tr>\n";
142
143 // Morphy
144 print '<tr><td class="titlefield">'.$langs->trans("MemberNature").'</td>';
145 print '<td class="valeur" >'.$object->getmorphylib('', 1).'</td>';
146 print '</tr>';
147
148 // Company
149 print '<tr><td>'.$langs->trans("Company").'</td><td class="valeur">'.dol_escape_htmltag($object->company).'</td></tr>';
150
151 // Civility
152 print '<tr><td>'.$langs->trans("UserTitle").'</td><td class="valeur">'.$object->getCivilityLabel().'</td>';
153 print '</tr>';
154
155 print "</table>";
156
157 print '</div>';
158
159
160 $cssclass = 'titlefield';
161 $permission = $user->hasRight('adherent', 'creer'); // Used by the include of notes.tpl.php
162 include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
163
164
165 print dol_get_fiche_end();
166}
167
168// End of page
169llxFooter();
170$db->close();
$id
Definition account.php:39
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
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:70
Class to manage members of a foundation.
Class to manage members type.
Class to manage generation of HTML components Only common components must be here.
llxFooter()
Footer empty.
Definition document.php:107
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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)
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.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
member_prepare_head(Adherent $object)
Return array head with list of tabs to view object information.
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.