28if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
29 $res = @include $_SERVER[
"CONTEXT_DOCUMENT_ROOT"].
"/main.inc.php";
32$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
33$tmp2 = realpath(__FILE__);
35$j = strlen($tmp2) - 1;
36while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
40if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
41 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
43if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
44 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
47if (!$res && file_exists(
"../main.inc.php")) {
48 $res = @include
"../main.inc.php";
50if (!$res && file_exists(
"../../main.inc.php")) {
51 $res = @include
"../../main.inc.php";
53if (!$res && file_exists(
"../../../main.inc.php")) {
54 $res = @include
"../../../main.inc.php";
57 die(
"Include of main fails");
60require_once DOL_DOCUMENT_ROOT.
'/contact/class/contact.class.php';
61require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
66$langs->loadLangs(array(
"mymodule@mymodule",
"companies",
"other",
"mails"));
72$action =
GETPOST(
'action',
'aZ09');
77$diroutputmassaction = $conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
78$hookmanager->initHooks(array(
$object->element.
'contact',
'globalcard'));
80$extrafields->fetch_name_optionals_label(
$object->table_element);
83include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
87$enablepermissioncheck = 0;
88if ($enablepermissioncheck) {
89 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
90 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
92 $permissiontoread = 1;
101if (!isModEnabled(
"mymodule")) {
104if (!$permissiontoread) {
113if ($action ==
'addcontact' && $permissiontoadd) {
116 $result =
$object->add_contact($contactid, $typeid,
GETPOST(
"source",
'aZ09'));
119 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".
$object->id);
122 if (
$object->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
123 $langs->load(
"errors");
124 setEventMessages($langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType"),
null,
'errors');
129} elseif ($action ==
'swapstatut' && $permissiontoadd) {
132} elseif ($action ==
'deletecontact' && $permissiontoadd) {
134 $result =
$object->delete_contact($lineid);
137 header(
"Location: ".$_SERVER[
'PHP_SELF'].
"?id=".
$object->id);
149$title = $langs->trans(
"MyObject").
" - ".$langs->trans(
'ContactsAddresses');
153llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-mymodule page-card_contact');
155$form =
new Form($db);
157$contactstatic =
new Contact($db);
158$userstatic =
new User($db);
175 $linkback =
'<a href="'.dol_buildpath(
'/mymodule/myobject_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
177 $morehtmlref =
'<div class="refidno">';
214 $morehtmlref .=
'</div>';
216 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref,
'', 0,
'',
'', 1);
223 $dirtpls = array_merge($conf->modules_parts[
'tpl'], array(
'/core/tpl'));
224 foreach ($dirtpls as $reldir) {
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 Dolibarr users.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
myobjectPrepareHead($object)
Prepare array of tabs for MyObject.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.