dolibarr  13.0.2
document.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2014 Alexandre Spangaro <aspangaro@open-dsi.fr>
3  * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
4  * Copyright (C) 2017 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 require '../main.inc.php';
27 require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/contact.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
32 
33 // Load translation files required by the page
34 $langs->loadLangs(array('other', 'companies', 'contact'));
35 
36 $id = GETPOST('id', 'int');
37 $action = GETPOST('action', 'aZ09');
38 $confirm = GETPOST('confirm', 'alpha');
39 
40 $object = new Contact($db);
41 
42 // Get object canvas (By default, this is not defined, so standard usage of dolibarr)
43 $object->getCanvas($id);
44 $objcanvas = null;
45 $canvas = (!empty($object->canvas) ? $object->canvas : GETPOST("canvas"));
46 if (!empty($canvas))
47 {
48  require_once DOL_DOCUMENT_ROOT.'/core/class/canvas.class.php';
49  $objcanvas = new Canvas($db, $action);
50  $objcanvas->getCanvas('contact', 'contactcard', $canvas);
51 }
52 
53 // Security check
54 if ($user->socid) $socid = $user->socid;
55 $result = restrictedArea($user, 'contact', $id, 'socpeople&societe', '', '', 'rowid', 0); // If we create a contact with no company (shared contacts), no check on write permission
56 
57 // Get parameters
58 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
59 $sortfield = GETPOST("sortfield", 'alpha');
60 $sortorder = GETPOST("sortorder", 'alpha');
61 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
62 if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
63 $offset = $limit * $page;
64 $pageprev = $page - 1;
65 $pagenext = $page + 1;
66 
67 if (!empty($conf->global->MAIN_DOC_SORT_FIELD)) { $sortfield = $conf->global->MAIN_DOC_SORT_FIELD; }
68 if (!empty($conf->global->MAIN_DOC_SORT_ORDER)) { $sortorder = $conf->global->MAIN_DOC_SORT_ORDER; }
69 
70 if (!$sortorder) $sortorder = "ASC";
71 if (!$sortfield) $sortfield = "name";
72 
73 if ($id > 0) $object->fetch($id);
74 
75 $upload_dir = $conf->societe->multidir_output[$object->entity].'/contact/'.dol_sanitizeFileName($object->ref);
76 $modulepart = 'contact';
77 
78 
79 /*
80  * Actions
81  */
82 
83 include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
84 
85 
86 /*
87  * View
88  */
89 
90 $form = new Form($db);
91 
92 $title = (!empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
93 if (!empty($conf->global->MAIN_HTML_TITLE) && preg_match('/contactnameonly/', $conf->global->MAIN_HTML_TITLE) && $object->lastname) $title = $object->lastname;
94 $help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
95 llxHeader('', $title, $helpurl);
96 
97 if ($object->id)
98 {
99  $head = contact_prepare_head($object);
100  $title = (!empty($conf->global->SOCIETE_ADDRESSES_MANAGEMENT) ? $langs->trans("Contacts") : $langs->trans("ContactsAddresses"));
101 
102  print dol_get_fiche_head($head, 'documents', $title, -1, 'contact');
103 
104 
105  // Build file list
106  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
107  $totalsize = 0;
108  foreach ($filearray as $key => $file)
109  {
110  $totalsize += $file['size'];
111  }
112 
113  $linkback = '<a href="'.DOL_URL_ROOT.'/contact/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
114 
115  $morehtmlref = '<div class="refidno">';
116  if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
117  {
118  $objsoc = new Societe($db);
119  $objsoc->fetch($object->socid);
120  // Thirdparty
121  $morehtmlref .= $langs->trans('ThirdParty').' : ';
122  if ($objsoc->id > 0) $morehtmlref .= $objsoc->getNomUrl(1);
123  else $morehtmlref .= $langs->trans("ContactNotLinkedToCompany");
124  }
125  $morehtmlref .= '</div>';
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 tableforfield centpercent">';
133 
134  // Company
135  /*
136  if (empty($conf->global->SOCIETE_DISABLE_CONTACTS))
137  {
138  if ($object->socid > 0)
139  {
140  $objsoc = new Societe($db);
141  $objsoc->fetch($object->socid);
142 
143  print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">'.$objsoc->getNomUrl(1).'</td></tr>';
144  }
145 
146  else
147  {
148  print '<tr><td>'.$langs->trans("ThirdParty").'</td><td colspan="3">';
149  print $langs->trans("ContactNotLinkedToCompany");
150  print '</td></tr>';
151  }
152  }*/
153 
154  // Civility
155  print '<tr><td class="titlefield">'.$langs->trans("UserTitle").'</td><td colspan="3">';
156  print $object->getCivilityLabel();
157  print '</td></tr>';
158 
159  print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
160  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
161  print '</table>';
162 
163  print '</div>';
164 
166 
167  $modulepart = 'contact';
168  $permission = $user->rights->societe->contact->creer;
169  $permtoedit = $user->rights->societe->contact->creer;
170  $param = '&id='.$object->id;
171  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
172 } else {
173  print $langs->trans("ErrorUnknown");
174 }
175 
176 
177 llxFooter();
178 
179 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Class to manage canvas.
Class to manage contact/addresses.
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage generation of HTML components Only common components must be here.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname.
Class to manage third parties objects (customers, suppliers, prospects...)
contact_prepare_head(Contact $object)
Prepare array with list of tabs.
Definition: contact.lib.php:33
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=0)
Check permissions of a user to show a page and an object.
dol_sanitizeFileName($str, $newstr= '_', $unaccent=1)
Clean a string to use it as a file name.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
llxFooter()
Empty footer.
Definition: wrapper.php:59