29 include_once DOL_DOCUMENT_ROOT.
'/core/modules/DolibarrModules.class.php';
48 $this->numero = 500000;
51 $this->rights_class =
'mymodule';
55 $this->family =
"other";
58 $this->module_position =
'90';
63 $this->
name = preg_replace(
'/^mod/i',
'', get_class($this));
68 $this->descriptionlong =
"MyModuleDescription";
71 $this->editor_name =
'Editor name';
72 $this->editor_url =
'https://www.example.com';
75 $this->version =
'1.0';
80 $this->const_name =
'MAIN_MODULE_'.strtoupper($this->
name);
86 $this->picto =
'generic';
89 $this->module_parts = array(
125 'moduleforexternal' => 0,
130 $this->dirs = array(
"/mymodule/temp");
133 $this->config_page_url = array(
"setup.php@mymodule");
137 $this->hidden =
false;
139 $this->depends = array();
141 $this->requiredby = array();
143 $this->conflictwith = array();
146 $this->langfiles = array(
"mymodule@mymodule");
149 $this->phpmin = array(7, 0);
150 $this->need_dolibarr_version = array(11, -3);
151 $this->need_javascript_ajax = 0;
154 $this->warnings_activation = array();
155 $this->warnings_activation_ext = array();
164 $this->
const = array();
172 if (!isset($conf->mymodule) || !isset($conf->mymodule->enabled)) {
173 $conf->mymodule =
new stdClass();
174 $conf->mymodule->enabled = 0;
178 $this->tabs = array();
206 $this->dictionaries = array();
235 $this->boxes = array(
246 $this->cronjobs = array(
268 $this->rights = array();
293 $this->menu = array();
297 $this->menu[$r++] = array(
300 'titre'=>
'ModuleMyModuleName',
301 'prefix' =>
img_picto(
'', $this->picto,
'class="paddingright pictofixedwidth valignmiddle"'),
302 'mainmenu'=>
'mymodule',
304 'url'=>
'/mymodule/mymoduleindex.php',
305 'langs'=>
'mymodule@mymodule',
306 'position'=>1000 + $r,
307 'enabled'=>
'isModEnabled("mymodule")',
434 public function init($options =
'')
436 global $conf, $langs;
454 $this->
remove($options);
460 $myTmpObjects = array();
461 $myTmpObjects[
'MyObject'] = array(
'includerefgeneration'=>0,
'includedocgeneration'=>0);
463 foreach ($myTmpObjects as $myTmpObjectKey => $myTmpObjectArray) {
464 if ($myTmpObjectKey ==
'MyObject') {
467 if ($myTmpObjectArray[
'includerefgeneration']) {
468 $src = DOL_DOCUMENT_ROOT.
'/install/doctemplates/'.$moduledir.
'/template_myobjects.odt';
469 $dirodt = DOL_DATA_ROOT.
'/doctemplates/'.$moduledir;
470 $dest = $dirodt.
'/template_myobjects.odt';
472 if (file_exists($src) && !file_exists($dest)) {
473 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
475 $result =
dol_copy($src, $dest, 0, 0);
477 $langs->load(
"errors");
478 $this->error = $langs->trans(
'ErrorFailToCopyFile', $src, $dest);
484 "DELETE FROM ".MAIN_DB_PREFIX.
"document_model WHERE nom = 'standard_".strtolower($myTmpObjectKey).
"' AND type = '".$this->db->escape(strtolower($myTmpObjectKey)).
"' AND entity = ".((
int) $conf->entity),
485 "INSERT INTO ".MAIN_DB_PREFIX.
"document_model (nom, type, entity) VALUES('standard_".strtolower($myTmpObjectKey).
"', '".$this->db->escape(strtolower($myTmpObjectKey)).
"', ".((
int) $conf->entity).
")",
486 "DELETE FROM ".MAIN_DB_PREFIX.
"document_model WHERE nom = 'generic_".strtolower($myTmpObjectKey).
"_odt' AND type = '".$this->db->escape(strtolower($myTmpObjectKey)).
"' AND entity = ".((
int) $conf->entity),
487 "INSERT INTO ".MAIN_DB_PREFIX.
"document_model (nom, type, entity) VALUES('generic_".strtolower($myTmpObjectKey).
"_odt', '".$this->db->escape(strtolower($myTmpObjectKey)).
"', ".((
int) $conf->entity).
")"
503 public function remove($options =
'')