30if (!$res && !empty($_SERVER[
"CONTEXT_DOCUMENT_ROOT"])) {
31 $res = @include $_SERVER[
"CONTEXT_DOCUMENT_ROOT"].
"/main.inc.php";
34$tmp = empty($_SERVER[
'SCRIPT_FILENAME']) ?
'' : $_SERVER[
'SCRIPT_FILENAME'];
35$tmp2 = realpath(__FILE__);
37$j = strlen($tmp2) - 1;
38while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
42if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1)).
"/main.inc.php")) {
43 $res = @include substr($tmp, 0, ($i + 1)).
"/main.inc.php";
45if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php")) {
46 $res = @include dirname(substr($tmp, 0, ($i + 1))).
"/main.inc.php";
49if (!$res && file_exists(
"../main.inc.php")) {
50 $res = @include
"../main.inc.php";
52if (!$res && file_exists(
"../../main.inc.php")) {
53 $res = @include
"../../main.inc.php";
55if (!$res && file_exists(
"../../../main.inc.php")) {
56 $res = @include
"../../../main.inc.php";
59 die(
"Include of main fails");
62require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
65$langs->loadLangs(array(
"mymodule@mymodule"));
67$action =
GETPOST(
'action',
'aZ09');
74if (isset($user->socid) && $user->socid > 0) {
76 $socid = $user->socid;
108$form =
new Form($db);
111llxHeader(
"", $langs->trans(
"MyModuleArea"),
'',
'', 0, 0,
'',
'',
'',
'mod-mymodule page-index');
113print
load_fiche_titre($langs->trans(
"MyModuleArea"),
'',
'mymodule.png@mymodule');
115print
'<div class="fichecenter"><div class="fichethirdleft">';
190print
'</div><div class="fichetwothirdright">';
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.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.