51if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
52 $res = @include $_SERVER[
"CONTEXT_DOCUMENT_ROOT"].
"/main.inc.php";
55$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
56$tmp2 = realpath(__FILE__);
58$j = strlen($tmp2) - 1;
59while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
63if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
64 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
66if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
67 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
70if (!$res && file_exists(
"../main.inc.php")) {
71 $res = @include
"../main.inc.php";
73if (!$res && file_exists(
"../../main.inc.php")) {
74 $res = @include
"../../main.inc.php";
76if (!$res && file_exists(
"../../../main.inc.php")) {
77 $res = @include
"../../../main.inc.php";
80 die(
"Include of main fails");
95$langs->loadLangs(array(
"mymodule@mymodule",
"companies"));
100$action =
GETPOST(
'action',
'aZ09');
101$cancel =
GETPOST(
'cancel',
'aZ09');
102$backtopage =
GETPOST(
'backtopage',
'alpha');
107$diroutputmassaction =
$conf->mymodule->dir_output.
'/temp/massgeneration/'.$user->id;
108$hookmanager->initHooks(array(
$object->element.
'note',
'globalcard'));
110$extrafields->fetch_name_optionals_label(
$object->table_element);
113include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
114if ($id > 0 || !empty($ref)) {
121$enablepermissioncheck =
getDolGlobalInt(
'MYMODULE_ENABLE_PERMISSION_CHECK');
122if ($enablepermissioncheck) {
123 $permissiontoread = $user->hasRight(
'mymodule',
'myobject',
'read');
124 $permissiontoadd = $user->hasRight(
'mymodule',
'myobject',
'write');
125 $permissionnote = $user->hasRight(
'mymodule',
'myobject',
'write');
127 $permissiontoread = 1;
128 $permissiontoadd = 1;
137if (!isModEnabled(
"mymodule")) {
140if (!$permissiontoread) {
149$parameters = array();
150$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
154if (empty($reshook)) {
155 include DOL_DOCUMENT_ROOT.
'/core/actions_setnotes.inc.php';
163$form =
new Form($db);
165$title = $langs->trans(
'MyObject').
' - '.$langs->trans(
"Notes");
170llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-mymodule page-card_notes');
172if ($id > 0 || !empty($ref)) {
181 $linkback =
'<a href="'.dol_buildpath(
'/mymodule/myobject_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
183 $morehtmlref =
'<div class="refidno">';
220 $morehtmlref .=
'</div>';
223 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
226 print
'<div class="fichecenter">';
227 print
'<div class="underbanner clearboth"></div>';
230 $cssclass =
"titlefield";
231 include DOL_DOCUMENT_ROOT.
'/core/tpl/notes.tpl.php';
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.
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.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.