30require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/contact.lib.php';
36$langs->loadLangs(array(
'companies',
'other'));
39$action =
GETPOST(
'action',
'aZ09');
43 $socid = $user->socid;
45$result =
restrictedArea($user,
'contact', $id,
'socpeople&societe');
55if ($action ==
'update' && !
GETPOST(
"cancel") && $user->hasRight(
'societe',
'contact',
'creer')) {
64 } elseif (!empty($_FILES[
'photo'][
'name'])) {
68 $result =
$object->update_perso($id, $user);
73 $dir = $conf->societe->dir_output.
'/contact/'.
get_exdir(
$object->id, 0, 0, 1, $object,
'contact').
'/photos';
75 $file_OK = is_uploaded_file($_FILES[
'photo'][
'tmp_name']);
77 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
78 require_once DOL_DOCUMENT_ROOT.
'/core/lib/images.lib.php';
80 $fileimg = $conf->societe->dir_output.
'/contact/'.
get_exdir(
$object->id, 0, 0, 1, $object,
'contact').
'/photos/'.
$object->photo;
81 $dirthumbs = $conf->societe->dir_output.
'/contact/'.
get_exdir(
$object->id, 0, 0, 1, $object,
'contact').
'/photos/thumbs';
91 if (!
dol_move_uploaded_file($_FILES[
'photo'][
'tmp_name'], $newfile, 1, 0, $_FILES[
'photo'][
'error']) > 0) {
102 switch ($_FILES[
'photo'][
'error']) {
105 $errors[] =
"ErrorFileSizeTooLarge";
108 $errors[] =
"ErrorFilePartiallyUploaded";
124$title = $langs->trans(
"ContactPersonalData");
128$help_url =
'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
130llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-societe page-contact-card_perso');
132$form =
new Form($db);
139if ($action ==
'edit') {
144 print
'<form name="perso" method="POST" enctype="multipart/form-data" action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'">';
145 print
'<input type="hidden" name="token" value="'.newToken().
'">';
146 print
'<input type="hidden" name="action" value="update">';
147 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
151 print
'<table class="border centpercent">';
154 print
'<tr><td class="titlefieldcreate">'.$langs->trans(
"Ref").
'</td><td>';
159 print
'<tr><td>'.$langs->trans(
"Lastname").
' / '.$langs->trans(
"Label").
'</td><td>'.
$object->lastname.
'</td></tr>';
160 print
'<tr><td>'.$langs->trans(
"Firstname").
'</td><td>'.
$object->firstname.
'</td>';
166 $objsoc->fetch(
$object->socid);
168 print
'<tr><td>'.$langs->trans(
"ThirdParty").
'</td><td>'.$objsoc->getNomUrl(1).
'</td>';
170 print
'<tr><td>'.$langs->trans(
"ThirdParty").
'</td><td>';
171 print $langs->trans(
"ContactNotLinkedToCompany");
177 print
'<tr><td><label for="civility_code">'.$langs->trans(
"UserTitle").
'</label></td><td>';
178 print
$object->getCivilityLabel();
183 print
'<tr class="hideonsmartphone">';
184 print
'<td>'.$form->editfieldkey(
'PhotoFile',
'photoinput',
'', $object, 0).
'</td>';
187 print $form->showphoto(
'contact', $object);
194 print
'<table class="nobordernopadding">';
196 print
'<tr><td><input type="checkbox" class="flat photodelete" name="deletephoto" id="photodelete"> <label for="photodelete">'.$langs->trans(
"Delete").
'</photo><br><br></td></tr>';
201 $maxmin = $maxfilesizearray[
'maxmin'];
203 print
'<input type="hidden" name="MAX_FILE_SIZE" value="'.($maxmin * 1024).
'">';
205 print
'<input type="file" class="flat" name="photo" id="photoinput">';
213 print
'<tr><td>'.$langs->trans(
"DateOfBirth").
'</td><td>';
214 $form =
new Form($db);
215 print $form->selectDate(
$object->birthday,
'birthday', 0, 0, 1,
"perso", 1, 0);
216 print
' ';
217 print
'<label for="birthday_alert">'.$langs->trans(
"BirthdayAlert").
':</label> ';
218 if (!empty(
$object->birthday_alert)) {
219 print
'<input type="checkbox" id="birthday_alert" name="birthday_alert" checked>';
221 print
'<input type="checkbox" id="birthday_alert" name="birthday_alert">';
230 print $form->buttonsSaveCancel();
238 $linkback =
'<a href="'.DOL_URL_ROOT.
'/contact/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
240 $morehtmlref =
'<a href="'.DOL_URL_ROOT.
'/contact/vcard.php?id='.
$object->id.
'" class="refid">';
241 $morehtmlref .=
img_picto($langs->trans(
"Download").
' '.$langs->trans(
"VCard"),
'vcard.png',
'class="valignmiddle marginleftonly paddingrightonly"');
242 $morehtmlref .=
'</a>';
244 $morehtmlref .=
'<div class="refidno">';
247 $objsoc->fetch(
$object->socid);
249 if ($objsoc->id > 0) {
250 $morehtmlref .= $objsoc->getNomUrl(1);
252 $morehtmlref .=
'<span class="opacitymedium">'.$langs->trans(
"ContactNotLinkedToCompany").
'</span>';
255 $morehtmlref .=
'</div>';
258 dol_banner_tab($object,
'id', $linkback, 1,
'rowid',
'ref', $morehtmlref);
261 print
'<div class="fichecenter">';
263 print
'<div class="underbanner clearboth"></div>';
264 print
'<table class="border centpercent tableforfield">';
287 print
'<tr><td class="titlefield">'.$langs->trans(
"UserTitle").
'</td><td colspan="3">';
288 print
$object->getCivilityLabel();
293 if (!empty(
$object->birthday)) {
294 include_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
296 print
'<td>'.$langs->trans(
"DateOfBirth").
'</td><td colspan="3">'.
dol_print_date(
$object->birthday,
"day");
303 print
'('.$ageyear.
' '.$langs->trans(
"DurationYears").
')';
304 } elseif ($agemonth >= 2) {
305 print
'('.$agemonth.
' '.$langs->trans(
"DurationMonths").
')';
307 print
'('.$agemonth.
' '.$langs->trans(
"DurationMonth").
')';
311 print
' - ';
313 print $langs->trans(
"BirthdayAlertOn");
315 print $langs->trans(
"BirthdayAlertOff");
319 print
'<td>'.$langs->trans(
"DateOfBirth").
'</td><td colspan="3"></td>';
331if ($action !=
'edit') {
335 if ($user->socid == 0) {
336 print
'<div class="tabsAction">';
338 if ($user->hasRight(
'societe',
'contact',
'creer')) {
339 print
'<a class="butAction" href="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'&action=edit&token='.
newToken().
'">'.$langs->trans(
'Modify').
'</a>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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.
Class to manage third parties objects (customers, suppliers, prospects...)
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_delete_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_move_uploaded_file($src_file, $dest_file, $allowoverwrite, $disablevirusscan=0, $uploaderrorcode=0, $nohook=0, $varfiles='addedfile', $upload_dir='')
Check validity of a file upload from an GUI page, and move it to its final destination.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
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.
dol_now($mode='auto')
Return date for now.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
image_format_supported($file, $acceptsvg=0)
Return if a filename is file name of a supported image format.
getMaxFileSizeArray()
Return the max allowed for file upload.
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.