dolibarr 20.0.2
contact.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2003 Brian Fraval <brian@fraval.org>
4 * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2005 Eric Seigne <eric.seigne@ryxeo.com>
6 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
7 * Copyright (C) 2008 Patrick Raguin <patrick.raguin@auguria.net>
8 * Copyright (C) 2010-2016 Juanjo Menent <jmenent@2byte.es>
9 * Copyright (C) 2011-2013 Alexandre Spangaro <aspangaro@open-dsi.fr>
10 * Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
11 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
12 * Copyright (C) 2015 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
13 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program. If not, see <https://www.gnu.org/licenses/>.
27 */
28
35// Load Dolibarr environment
36require '../main.inc.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
38require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
39require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
40require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
41require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
42require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
43require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
44require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
45require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
46require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
47if (isModEnabled('member')) {
48 require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
49}
50
51// Load translation files required by the page
52$langs->loadLangs(array("companies", "commercial", "bills", "banks", "users"));
53
54if (isModEnabled('category')) {
55 $langs->load("categories");
56}
57if (isModEnabled('incoterm')) {
58 $langs->load("incoterm");
59}
60if (isModEnabled('notification')) {
61 $langs->load("mails");
62}
63
64$error = 0;
65$errors = array();
66
67
68// Get parameters
69$action = (GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view');
70$cancel = GETPOST('cancel', 'alpha');
71$backtopage = GETPOST('backtopage', 'alpha');
72$confirm = GETPOST('confirm');
73$socid = GETPOSTINT('socid') ? GETPOSTINT('socid') : GETPOSTINT('id');
74
75if ($user->socid) {
76 $socid = $user->socid;
77}
78
79if (empty($socid) && $action == 'view') {
80 $action = 'create';
81}
82
83// Initialize objects
84$object = new Societe($db);
85$extrafields = new ExtraFields($db);
86
87// fetch optionals attributes and labels
88$extrafields->fetch_name_optionals_label($object->table_element);
89
90// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
91$hookmanager->initHooks(array('thirdpartycontact', 'globalcard'));
92
93if ($object->fetch($socid) <= 0 && $action == 'view') {
94 $langs->load("errors");
95 print($langs->trans('ErrorRecordNotFound'));
96 exit;
97}
98
99// Get object canvas (By default, this is not defined, so standard usage of dolibarr)
100$canvas = $object->canvas ? $object->canvas : GETPOST("canvas");
101$objcanvas = null;
102if (!empty($canvas)) {
103 require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
104 $objcanvas = new Canvas($db, $action);
105 $objcanvas->getCanvas('thirdparty', 'card', $canvas);
106}
107
108// Security check
109$result = restrictedArea($user, 'societe', $socid, '&societe', '', 'fk_soc', 'rowid', 0);
110if (!$user->hasRight('societe', 'contact', 'lire')) {
112}
113
114
115/*
116 * Actions
117 */
118
119$parameters = array('id'=>$socid, 'objcanvas'=>$objcanvas);
120$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
121if ($reshook < 0) {
122 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
123}
124
125if (empty($reshook)) {
126 if ($cancel) {
127 $action = '';
128 if (!empty($backtopage)) {
129 header("Location: ".$backtopage);
130 exit;
131 }
132 }
133
134 // Selection of new fields
135 include DOL_DOCUMENT_ROOT.'/core/actions_changeselectedfields.inc.php';
136}
137
138if ($action == 'confirm_delete' && $user->hasRight('societe', 'contact', 'delete')) {
139 $id = GETPOST('id', 'int');
140 if (!empty($id) && $socid > 0) {
141 $contact = new Contact($db);
142 $ret = $contact->fetch($id);
143 if ($ret > 0) {
144 if ($contact->priv == 0 || ($contact->user_modification_id == ((int) $user->id) && $contact->priv == 1)) {
145 $contact->oldcopy = clone $contact; // @phan-suppress-current-line PhanTypeMismatchProperty
146 $result = $contact->delete($user);
147 if ($result > 0) {
148 setEventMessages('RecordDeleted', null, 'mesgs');
149 header("Location: ".$_SERVER['PHP_SELF']."?id=".$socid);
150 exit();
151 } else {
152 setEventMessages($contact->error, $contact->errors, 'errors');
153 }
154 }
155 } else {
156 setEventMessages($contact->error, $contact->errors, 'errors');
157 }
158 }
159}
160
161/*
162 * View
163 */
164
165$form = new Form($db);
166$formfile = new FormFile($db);
167$formadmin = new FormAdmin($db);
168$formcompany = new FormCompany($db);
169
170if ($socid > 0 && empty($object->id)) {
171 $result = $object->fetch($socid);
172 if ($result <= 0) {
173 dol_print_error(null, $object->error);
174 }
175}
176
177$title = $langs->trans("ThirdParty");
178if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
179 $title = $object->name." - ".$langs->trans('ContactsAddresses');
180}
181$help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
182llxHeader('', $title, $help_url);
183
184$countrynotdefined = $langs->trans("ErrorSetACountryFirst").' ('.$langs->trans("SeeAbove").')';
185
186
187if (!empty($object->id)) {
188 $res = $object->fetch_optionals();
189}
190//if ($res < 0) { dol_print_error($db); exit; }
191
192
193$head = societe_prepare_head($object);
194
195print dol_get_fiche_head($head, 'contact', $langs->trans("ThirdParty"), 0, 'company');
196
197$linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
198
199dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom', '', '', 0, '', '', 'arearefnobottom');
200
201print dol_get_fiche_end();
202
203print '<br>';
204
205if ($action != 'presend') {
206 // Contacts list
207 if (!getDolGlobalString('SOCIETE_DISABLE_CONTACTS')) {
208 $result = show_contacts($conf, $langs, $db, $object, $_SERVER["PHP_SELF"].'?socid='.$object->id, 1);
209 }
210}
211if ($action == 'delete') {
212 $formconfirm = $form->formconfirm(
213 $_SERVER["PHP_SELF"].'?id='.GETPOST('id').'&socid='.$object->id,
214 $langs->trans('Delete'),
215 $langs->trans('ConfirmDeleteContact', GETPOST('id', 'alpha')),
216 'confirm_delete',
217 '',
218 0,
219 1
220 );
221 print $formconfirm;
222}
223
224// End of page
225llxFooter();
226$db->close();
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()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage canvas.
Class to manage contact/addresses.
Class to manage standard extra fields.
Class to generate html code for admin pages.
Class to build HTML component for third parties management Only common components are here.
Class to offer components to list and upload files.
Class to manage generation of HTML components Only common components must be here.
Class to manage third parties objects (customers, suppliers, prospects...)
show_contacts($conf, $langs, $db, $object, $backtopage='', $showuserlogin=0)
Show html area for list of contacts.
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
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.