dolibarr 21.0.0-beta
mymodule.php
Go to the documentation of this file.
1#!/usr/bin/env php
2<?php
3/* Copyright (C) 2007-2023 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) ---Replace with your own copyright and developer email---
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
28//if (! defined('NOREQUIREDB')) define('NOREQUIREDB', '1'); // Do not create database handler $db
29//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER', '1'); // Do not load object $user
30//if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC', '1'); // Do not load object $mysoc
31//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN', '1'); // Do not load object $langs
32//if (! defined('NOSCANGETFORINJECTION')) define('NOSCANGETFORINJECTION', '1'); // Do not check injection attack on GET parameters
33//if (! defined('NOSCANPOSTFORINJECTION')) define('NOSCANPOSTFORINJECTION', '1'); // Do not check injection attack on POST parameters
34//if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL', '1'); // Do not roll the Anti CSRF token (used if MAIN_SECURITY_CSRF_WITH_TOKEN is on)
35//if (! defined('NOSTYLECHECK')) define('NOSTYLECHECK', '1'); // Do not check style html tag into posted data
36//if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
37//if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
38//if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
39//if (! defined("NOLOGIN")) define("NOLOGIN", '1'); // If this page is public (can be called outside logged session). This include the NOIPCHECK too.
40//if (! defined('NOIPCHECK')) define('NOIPCHECK', '1'); // Do not check IP defined into conf $dolibarr_main_restrict_ip
41//if (! defined("MAIN_LANG_DEFAULT")) define('MAIN_LANG_DEFAULT', 'auto'); // Force lang to a particular value
42//if (! defined("MAIN_AUTHENTICATION_MODE")) define('MAIN_AUTHENTICATION_MODE', 'aloginmodule'); // Force authentication handler
43//if (! defined('CSRFCHECK_WITH_TOKEN')) define('CSRFCHECK_WITH_TOKEN', '1'); // Force use of CSRF protection with tokens even for GET
44//if (! defined('NOBROWSERNOTIF')) define('NOBROWSERNOTIF', '1'); // Disable browser notification
45if (!defined('NOSESSION')) {
46 define('NOSESSION', '1');
47} // On CLI mode, no need to use web sessions
48
49
50$sapi_type = php_sapi_name();
51$script_file = basename(__FILE__);
52$path = __DIR__.'/';
53
54// Test if batch mode
55if (substr($sapi_type, 0, 3) == 'cgi') {
56 echo "Error: You are using PHP for CGI. To execute ".$script_file." from command line, you must use PHP for CLI mode.\n";
57 exit(-1);
58}
59
60// Global variables
61$version = '1.0';
62$error = 0;
63
64
65// -------------------- START OF YOUR CODE HERE --------------------
66@set_time_limit(0); // No timeout for this script
67define('EVEN_IF_ONLY_LOGIN_ALLOWED', 1); // Set this define to 0 if you want to lock your script when dolibarr setup is "locked to admin user only".
68
69// Load Dolibarr environment
70$res = 0;
71// Try master.inc.php into web root detected using web root calculated from SCRIPT_FILENAME
72$tmp = empty($_SERVER['SCRIPT_FILENAME']) ? '' : $_SERVER['SCRIPT_FILENAME'];
73$tmp2 = realpath(__FILE__);
74$i = strlen($tmp) - 1;
75$j = strlen($tmp2) - 1;
76while ($i > 0 && $j > 0 && isset($tmp[$i]) && isset($tmp2[$j]) && $tmp[$i] == $tmp2[$j]) {
77 $i--;
78 $j--;
79}
80if (!$res && $i > 0 && file_exists(substr($tmp, 0, ($i + 1))."/master.inc.php")) {
81 $res = @include substr($tmp, 0, ($i + 1))."/master.inc.php";
82}
83if (!$res && $i > 0 && file_exists(dirname(substr($tmp, 0, ($i + 1)))."/master.inc.php")) {
84 $res = @include dirname(substr($tmp, 0, ($i + 1)))."/master.inc.php";
85}
86// Try master.inc.php using relative path
87if (!$res && file_exists("../master.inc.php")) {
88 $res = @include "../master.inc.php";
89}
90if (!$res && file_exists("../../master.inc.php")) {
91 $res = @include "../../master.inc.php";
92}
93if (!$res && file_exists("../../../master.inc.php")) {
94 $res = @include "../../../master.inc.php";
95}
96if (!$res) {
97 print "Include of master fails";
98 exit(-1);
99}
100// After this $db, $mysoc, $langs, $conf and $hookmanager are defined (Opened $db handler to database will be closed at end of file).
101// $user is created but empty.
102
111//$langs->setDefaultLang('en_US'); // To change default language of $langs
112$langs->load("main"); // To load language file for default language
113
114// Load user and its permissions
115$result = $user->fetch(0, 'admin'); // Load user for login 'admin'. Comment line to run as anonymous user.
116if (!($result > 0)) {
117 dol_print_error(null, $user->error);
118 exit;
119}
120$user->loadRights();
121
122$hookmanager->initHooks(array('cli'));
123
124
125/*
126 * Main
127 */
128
129print "***** ".$script_file." (".$version.") pid=".dol_getmypid()." *****\n";
130if (!isset($argv[1])) { // Check parameters
131 print "Usage: ".$script_file." param1 param2 ...\n";
132 exit(-1);
133}
134print '--- start'."\n";
135print 'Argument 1='.$argv[1]."\n";
136print 'Argument 2='.$argv[2]."\n";
137
138
139// Start of transaction
140$db->begin();
141
142
143// Examples for manipulating class MyObject
144//dol_include_once("/mymodule/class/myobject.class.php");
145//$myobject=new MyObject($db);
146
147// Example for inserting creating object in database
148/*
149dol_syslog($script_file." CREATE", LOG_DEBUG);
150$myobject->prop1='value_prop1';
151$myobject->prop2='value_prop2';
152$id=$myobject->create($user);
153if ($id < 0) { $error++; dol_print_error($db,$myobject->error); }
154else print "Object created with id=".$id."\n";
155*/
156
157// Example for reading object from database
158/*
159dol_syslog($script_file." FETCH", LOG_DEBUG);
160$result=$myobject->fetch($id);
161if ($result < 0) { $error; dol_print_error($db,$myobject->error); }
162else print "Object with id=".$id." loaded\n";
163*/
164
165// Example for updating object in database ($myobject must have been loaded by a fetch before)
166/*
167dol_syslog($script_file." UPDATE", LOG_DEBUG);
168$myobject->prop1='newvalue_prop1';
169$myobject->prop2='newvalue_prop2';
170$result=$myobject->update($user);
171if ($result < 0) { $error++; dol_print_error($db,$myobject->error); }
172else print "Object with id ".$myobject->id." updated\n";
173*/
174
175// Example for deleting object in database ($myobject must have been loaded by a fetch before)
176/*
177dol_syslog($script_file." DELETE", LOG_DEBUG);
178$result=$myobject->delete($user);
179if ($result < 0) { $error++; dol_print_error($db,$myobject->error); }
180else print "Object with id ".$myobject->id." deleted\n";
181*/
182
183
184// An example of a direct SQL read without using the fetch method
185/*
186$sql = "SELECT field1, field2";
187$sql.= " FROM ".MAIN_DB_PREFIX."myobject";
188$sql.= " WHERE field3 = 'xxx'";
189$sql.= " ORDER BY field1 ASC";
190
191dol_syslog($script_file, LOG_DEBUG);
192$resql=$db->query($sql);
193if ($resql)
194{
195 $num = $db->num_rows($resql);
196 $i = 0;
197 if ($num)
198 {
199 while ($i < $num)
200 {
201 $obj = $db->fetch_object($resql);
202 if ($obj)
203 {
204 // You can use here results
205 print $obj->field1;
206 print $obj->field2;
207 }
208 $i++;
209 }
210 }
211}
212else
213{
214 $error++;
215 dol_print_error($db);
216}
217*/
218
219
220// -------------------- END OF YOUR CODE --------------------
221
222if (!$error) {
223 $db->commit();
224 print '--- end ok'."\n";
225} else {
226 print '--- end error code='.$error."\n";
227 $db->rollback();
228}
229
230$db->close(); // Close $db database opened handler
231
232exit($error);
dol_getmypid()
Return getmypid() or random PID when function is disabled Some web hosts disable this php function fo...
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...