dolibarr  20.0.0-beta
about.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) ---Put here your own copyright and developer email---
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
25 // Load Dolibarr environment
26 $res = 0;
27 // Try main.inc.php into web root known defined into CONTEXT_DOCUMENT_ROOT (not always defined)
28 if (!$res && !empty($_SERVER["CONTEXT_DOCUMENT_ROOT"])) {
29  $res = @include $_SERVER["CONTEXT_DOCUMENT_ROOT"]."/main.inc.php";
30 }
31 // Try main.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
32 $tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME']; $tmp2 = realpath(__FILE__); $i = strlen($tmp) - 1; $j = strlen($tmp2) - 1;
33 while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
34  $i--;
35  $j--;
36 }
37 if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/main.inc.php")) {
38  $res = @include substr($tmp, 0, ($i + 1))."/main.inc.php";
39 }
40 if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php")) {
41  $res = @include dirname(substr($tmp, 0, ($i + 1)))."/main.inc.php";
42 }
43 // Try main.inc.php using relative path
44 if (!$res && file_exists("../../main.inc.php")) {
45  $res = @include "../../main.inc.php";
46 }
47 if (!$res && file_exists("../../../main.inc.php")) {
48  $res = @include "../../../main.inc.php";
49 }
50 if (!$res) {
51  die("Include of main fails");
52 }
53 
54 // Libraries
55 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
56 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
57 require_once '../lib/mymodule.lib.php';
58 
59 // Translations
60 $langs->loadLangs(array("errors", "admin", "mymodule@mymodule"));
61 
62 // Access control
63 if (!$user->admin) {
65 }
66 
67 // Parameters
68 $action = GETPOST('action', 'aZ09');
69 $backtopage = GETPOST('backtopage', 'alpha');
70 
71 
72 /*
73  * Actions
74  */
75 
76 // None
77 
78 
79 /*
80  * View
81  */
82 
83 $form = new Form($db);
84 
85 $help_url = '';
86 $title = "MyModuleSetup";
87 
88 llxHeader('', $langs->trans($title), $help_url, '', 0, 0, '', '', '', 'mod-mymodule page-admin_about');
89 
90 // Subheader
91 $linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1').'">'.$langs->trans("BackToModuleList").'</a>';
92 
93 print load_fiche_titre($langs->trans($title), $linkback, 'title_setup');
94 
95 // Configuration header
96 $head = mymoduleAdminPrepareHead();
97 print dol_get_fiche_head($head, 'about', $langs->trans($title), 0, 'mymodule@mymodule');
98 
99 dol_include_once('/mymodule/core/modules/modMyModule.class.php');
100 $tmpmodule = new modMyModule($db);
101 print $tmpmodule->getDescLong();
102 
103 // Page end
104 print dol_get_fiche_end();
105 llxFooter();
106 $db->close();
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:55
llxFooter()
Empty footer.
Definition: wrapper.php:69
Class to manage generation of HTML components Only common components must be here.
Description and activation class for module MyModule.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
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.
mymoduleAdminPrepareHead()
Prepare admin pages header.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.