modMyModule.class.php 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. <?php
  2. /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
  3. * Copyright (C) 2004-2015 Laurent Destailleur <eldy@users.sourceforge.net>
  4. * Copyright (C) 2005-2016 Regis Houssin <regis.houssin@capnetworks.com>
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. /**
  20. * \defgroup mymodule Module MyModule
  21. * \brief MyModule module descriptor.
  22. *
  23. * \file htdocs/mymodule/core/modules/modMyModule.class.php
  24. * \ingroup mymodule
  25. * \brief Description and activation file for module MyModule
  26. */
  27. include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
  28. // The class name should start with a lower case mod for Dolibarr to pick it up
  29. // so we ignore the Squiz.Classes.ValidClassName.NotCamelCaps rule.
  30. // @codingStandardsIgnoreStart
  31. /**
  32. * Description and activation class for module MyModule
  33. */
  34. class modMyModule extends DolibarrModules
  35. {
  36. // @codingStandardsIgnoreEnd
  37. /**
  38. * Constructor. Define names, constants, directories, boxes, permissions
  39. *
  40. * @param DoliDB $db Database handler
  41. */
  42. public function __construct($db)
  43. {
  44. global $langs,$conf;
  45. $this->db = $db;
  46. // Id for module (must be unique).
  47. // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
  48. $this->numero = 500000; // TODO Go on page http://wiki.dolibarr.org/index.php/List_of_modules_id to reserve id number for your module
  49. // Key text used to identify module (for permissions, menus, etc...)
  50. $this->rights_class = 'mymodule';
  51. // Family can be 'crm','financial','hr','projects','products','ecm','technic','interface','other'
  52. // It is used to group modules by family in module setup page
  53. $this->family = "other";
  54. // Module position in the family
  55. $this->module_position = 500;
  56. // Gives the possibility to the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this)
  57. //$this->familyinfo = array('myownfamily' => array('position' => '001', 'label' => $langs->trans("MyOwnFamily")));
  58. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  59. $this->name = preg_replace('/^mod/i','',get_class($this));
  60. // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
  61. $this->description = "MyModuleDescription";
  62. $this->descriptionlong = "MyModuleDescription (Long)";
  63. $this->editor_name = 'Editor name';
  64. $this->editor_url = 'https://www.example.com';
  65. // Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated' or a version string like 'x.y.z'
  66. $this->version = '1.0';
  67. // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
  68. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  69. // Name of image file used for this module.
  70. // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
  71. // If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
  72. $this->picto='generic';
  73. // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
  74. // for default path (eg: /mymodule/core/xxxxx) (0=disable, 1=enable)
  75. // for specific path of parts (eg: /mymodule/core/modules/barcode)
  76. // for specific css file (eg: /mymodule/css/mymodule.css.php)
  77. //$this->module_parts = array(
  78. // 'triggers' => 0, // Set this to 1 if module has its own trigger directory (core/triggers)
  79. // 'login' => 0, // Set this to 1 if module has its own login method directory (core/login)
  80. // 'substitutions' => 0, // Set this to 1 if module has its own substitution function file (core/substitutions)
  81. // 'menus' => 0, // Set this to 1 if module has its own menus handler directory (core/menus)
  82. // 'theme' => 0, // Set this to 1 if module has its own theme directory (theme)
  83. // 'tpl' => 0, // Set this to 1 if module overwrite template dir (core/tpl)
  84. // 'barcode' => 0, // Set this to 1 if module has its own barcode directory (core/modules/barcode)
  85. // 'models' => 0, // Set this to 1 if module has its own models directory (core/modules/xxx)
  86. // 'css' => array('/mymodule/css/mymodule.css.php'), // Set this to relative path of css file if module has its own css file
  87. // 'js' => array('/mymodule/js/mymodule.js'), // Set this to relative path of js file if module must load a js on all pages
  88. // 'hooks' => array('hookcontext1','hookcontext2',...) // Set here all hooks context managed by module. You can also set hook context 'all'
  89. // 'dir' => array('output' => 'othermodulename'), // To force the default directories names
  90. // 'workflow' => array('WORKFLOW_MODULE1_YOURACTIONTYPE_MODULE2'=>array('enabled'=>'! empty($conf->module1->enabled) && ! empty($conf->module2->enabled)', 'picto'=>'yourpicto@mymodule')) // Set here all workflow context managed by module
  91. // );
  92. $this->module_parts = array();
  93. // Data directories to create when module is enabled.
  94. // Example: this->dirs = array("/mymodule/temp");
  95. $this->dirs = array();
  96. // Config pages. Put here list of php page, stored into mymodule/admin directory, to use to setup module.
  97. $this->config_page_url = array("setup.php@mymodule");
  98. // Dependencies
  99. $this->hidden = false; // A condition to hide module
  100. $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
  101. $this->requiredby = array(); // List of module ids to disable if this one is disabled
  102. $this->conflictwith = array(); // List of module class names as string this module is in conflict with
  103. $this->phpmin = array(5,0); // Minimum version of PHP required by module
  104. $this->need_dolibarr_version = array(3,0); // Minimum version of Dolibarr required by module
  105. $this->langfiles = array("mymodule@mymodule");
  106. // Constants
  107. // List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
  108. // Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',1),
  109. // 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0, 'current', 1)
  110. // );
  111. $this->const = array();
  112. // Array to add new pages in new tabs
  113. // Example: $this->tabs = array('objecttype:+tabname1:Title1:mylangfile@mymodule:$user->rights->mymodule->read:/mymodule/mynewtab1.php?id=__ID__', // To add a new tab identified by code tabname1
  114. // 'objecttype:+tabname2:SUBSTITUTION_Title2:mylangfile@mymodule:$user->rights->othermodule->read:/mymodule/mynewtab2.php?id=__ID__', // To add another new tab identified by code tabname2. Label will be result of calling all substitution functions on 'Title2' key.
  115. // 'objecttype:-tabname:NU:conditiontoremove'); // To remove an existing tab identified by code tabname
  116. // where objecttype can be
  117. // 'categories_x' to add a tab in category view (replace 'x' by type of category (0=product, 1=supplier, 2=customer, 3=member)
  118. // 'contact' to add a tab in contact view
  119. // 'contract' to add a tab in contract view
  120. // 'group' to add a tab in group view
  121. // 'intervention' to add a tab in intervention view
  122. // 'invoice' to add a tab in customer invoice view
  123. // 'invoice_supplier' to add a tab in supplier invoice view
  124. // 'member' to add a tab in fundation member view
  125. // 'opensurveypoll' to add a tab in opensurvey poll view
  126. // 'order' to add a tab in customer order view
  127. // 'order_supplier' to add a tab in supplier order view
  128. // 'payment' to add a tab in payment view
  129. // 'payment_supplier' to add a tab in supplier payment view
  130. // 'product' to add a tab in product view
  131. // 'propal' to add a tab in propal view
  132. // 'project' to add a tab in project view
  133. // 'stock' to add a tab in stock view
  134. // 'thirdparty' to add a tab in third party view
  135. // 'user' to add a tab in user view
  136. $this->tabs = array();
  137. if (! isset($conf->mymodule) || ! isset($conf->mymodule->enabled))
  138. {
  139. $conf->mymodule=new stdClass();
  140. $conf->mymodule->enabled=0;
  141. }
  142. // Dictionaries
  143. $this->dictionaries=array();
  144. /* Example:
  145. $this->dictionaries=array(
  146. 'langs'=>'mylangfile@mymodule',
  147. 'tabname'=>array(MAIN_DB_PREFIX."table1",MAIN_DB_PREFIX."table2",MAIN_DB_PREFIX."table3"), // List of tables we want to see into dictonnary editor
  148. 'tablib'=>array("Table1","Table2","Table3"), // Label of tables
  149. 'tabsql'=>array('SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table1 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table2 as f','SELECT f.rowid as rowid, f.code, f.label, f.active FROM '.MAIN_DB_PREFIX.'table3 as f'), // Request to select fields
  150. 'tabsqlsort'=>array("label ASC","label ASC","label ASC"), // Sort order
  151. 'tabfield'=>array("code,label","code,label","code,label"), // List of fields (result of select to show dictionary)
  152. 'tabfieldvalue'=>array("code,label","code,label","code,label"), // List of fields (list of fields to edit a record)
  153. 'tabfieldinsert'=>array("code,label","code,label","code,label"), // List of fields (list of fields for insert)
  154. 'tabrowid'=>array("rowid","rowid","rowid"), // Name of columns with primary key (try to always name it 'rowid')
  155. 'tabcond'=>array($conf->mymodule->enabled,$conf->mymodule->enabled,$conf->mymodule->enabled) // Condition to show each dictionary
  156. );
  157. */
  158. // Boxes
  159. // Add here list of php file(s) stored in core/boxes that contains class to show a box.
  160. $this->boxes = array(); // List of boxes
  161. // Example:
  162. //$this->boxes=array(
  163. // 0=>array('file'=>'myboxa.php@mymodule','note'=>'','enabledbydefaulton'=>'Home'),
  164. // 1=>array('file'=>'myboxb.php@mymodule','note'=>''),
  165. // 2=>array('file'=>'myboxc.php@mymodule','note'=>'')
  166. //);
  167. // Cronjobs
  168. $this->cronjobs = array(); // List of cron jobs entries to add
  169. // Example: $this->cronjobs=array(0=>array('label'=>'My label', 'jobtype'=>'method', 'class'=>'/dir/class/file.class.php', 'objectname'=>'MyClass', 'method'=>'myMethod', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>2, 'unitfrequency'=>3600, 'test'=>true),
  170. // 1=>array('label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24, 'test'=>true)
  171. // );
  172. // Permissions
  173. $this->rights = array(); // Permission array used by this module
  174. $r=0;
  175. // Add here list of permission defined by an id, a label, a boolean and two constant strings.
  176. // Example:
  177. // $this->rights[$r][0] = $this->numero + $r; // Permission id (must not be already used)
  178. // $this->rights[$r][1] = 'Permision label'; // Permission label
  179. // $this->rights[$r][3] = 1; // Permission by default for new user (0/1)
  180. // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  181. // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
  182. // $r++;
  183. // Main menu entries
  184. $this->menu = array(); // List of menus to add
  185. $r=0;
  186. // Add here entries to declare new menus
  187. //
  188. // Example to declare a new Top Menu entry and its Left menu entry:
  189. // $this->menu[$r]=array( 'fk_menu'=>'', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
  190. // 'type'=>'top', // This is a Top menu entry
  191. // 'titre'=>'MyModule top menu',
  192. // 'mainmenu'=>'mymodule',
  193. // 'leftmenu'=>'mymodule',
  194. // 'url'=>'/mymodule/pagetop.php',
  195. // 'langs'=>'mylangfile@mymodule', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  196. // 'position'=>100,
  197. // 'enabled'=>'$conf->mymodule->enabled', // Define condition to show or hide menu entry. Use '$conf->mymodule->enabled' if entry must be visible if module is enabled.
  198. // 'perms'=>'1', // Use 'perms'=>'$user->rights->mymodule->level1->level2' if you want your menu with a permission rules
  199. // 'target'=>'',
  200. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  201. // $r++;
  202. //
  203. // Example to declare a Left Menu entry into an existing Top menu entry:
  204. // $this->menu[$r]=array( 'fk_menu'=>'fk_mainmenu=xxx', // '' if this is a top menu. For left menu, use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
  205. // 'type'=>'left', // This is a Left menu entry
  206. // 'titre'=>'MyModule left menu',
  207. // 'mainmenu'=>'xxx',
  208. // 'leftmenu'=>'mymodule',
  209. // 'url'=>'/mymodule/pagelevel2.php',
  210. // 'langs'=>'mylangfile@mymodule', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  211. // 'position'=>100,
  212. // 'enabled'=>'$conf->mymodule->enabled', // Define condition to show or hide menu entry. Use '$conf->mymodule->enabled' if entry must be visible if module is enabled. Use '$leftmenu==\'system\'' to show if leftmenu system is selected.
  213. // 'perms'=>'1', // Use 'perms'=>'$user->rights->mymodule->level1->level2' if you want your menu with a permission rules
  214. // 'target'=>'',
  215. // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  216. // $r++;
  217. // Exports
  218. $r=1;
  219. // Example:
  220. // $this->export_code[$r]=$this->rights_class.'_'.$r;
  221. // $this->export_label[$r]='MyModule'; // Translation key (used only if key ExportDataset_xxx_z not found)
  222. // $this->export_enabled[$r]='1'; // Condition to show export in list (ie: '$user->id==3'). Set to 1 to always show when module is enabled.
  223. // $this->export_icon[$r]='generic:MyModule'; // Put here code of icon then string for translation key of module name
  224. // $this->export_permission[$r]=array(array("mymodule","level1","level2"));
  225. // $this->export_fields_array[$r]=array('s.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town','s.fk_pays'=>'Country','s.phone'=>'Phone','s.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3','s.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode','s.code_compta_fournisseur'=>'SupplierAccountancyCode','f.rowid'=>"InvoiceId",'f.facnumber'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",'f.datef'=>"DateInvoice",'f.total'=>"TotalHT",'f.total_ttc'=>"TotalTTC",'f.tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus','f.note'=>"InvoiceNote",'fd.rowid'=>'LineId','fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef');
  226. // $this->export_TypeFields_array[$r]=array('t.date'=>'Date', 't.qte'=>'Numeric', 't.poids'=>'Numeric', 't.fad'=>'Numeric', 't.paq'=>'Numeric', 't.stockage'=>'Numeric', 't.fadparliv'=>'Numeric', 't.livau100'=>'Numeric', 't.forfait'=>'Numeric', 's.nom'=>'Text','s.address'=>'Text','s.zip'=>'Text','s.town'=>'Text','c.code'=>'Text','s.phone'=>'Text','s.siren'=>'Text','s.siret'=>'Text','s.ape'=>'Text','s.idprof4'=>'Text','s.code_compta'=>'Text','s.code_compta_fournisseur'=>'Text','s.tva_intra'=>'Text','f.facnumber'=>"Text",'f.datec'=>"Date",'f.datef'=>"Date",'f.date_lim_reglement'=>"Date",'f.total'=>"Numeric",'f.total_ttc'=>"Numeric",'f.tva'=>"Numeric",'f.paye'=>"Boolean",'f.fk_statut'=>'Status','f.note_private'=>"Text",'f.note_public'=>"Text",'fd.description'=>"Text",'fd.subprice'=>"Numeric",'fd.tva_tx'=>"Numeric",'fd.qty'=>"Numeric",'fd.total_ht'=>"Numeric",'fd.total_tva'=>"Numeric",'fd.total_ttc'=>"Numeric",'fd.date_start'=>"Date",'fd.date_end'=>"Date",'fd.special_code'=>'Numeric','fd.product_type'=>"Numeric",'fd.fk_product'=>'List:product:label','p.ref'=>'Text','p.label'=>'Text','p.accountancy_code_sell'=>'Text');
  227. // $this->export_entities_array[$r]=array('s.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company','s.fk_pays'=>'company','s.phone'=>'company','s.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company','s.code_compta'=>'company','s.code_compta_fournisseur'=>'company','f.rowid'=>"invoice",'f.facnumber'=>"invoice",'f.datec'=>"invoice",'f.datef'=>"invoice",'f.total'=>"invoice",'f.total_ttc'=>"invoice",'f.tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice','f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product');
  228. // $this->export_dependencies_array[$r]=array('invoice_line'=>'fd.rowid','product'=>'fd.rowid'); // To add unique key if we ask a field of a child to avoid the DISTINCT to discard them
  229. // $this->export_sql_start[$r]='SELECT DISTINCT ';
  230. // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
  231. // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
  232. // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
  233. // $this->export_sql_order[$r] .=' ORDER BY s.nom';
  234. // $r++;
  235. }
  236. /**
  237. * Function called when module is enabled.
  238. * The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
  239. * It also creates data directories
  240. *
  241. * @param string $options Options when enabling module ('', 'noboxes')
  242. * @return int 1 if OK, 0 if KO
  243. */
  244. public function init($options='')
  245. {
  246. $sql = array();
  247. $this->_load_tables('/mymodule/sql/');
  248. return $this->_init($sql, $options);
  249. }
  250. /**
  251. * Function called when module is disabled.
  252. * Remove from database constants, boxes and permissions from Dolibarr database.
  253. * Data directories are not deleted
  254. *
  255. * @param string $options Options when enabling module ('', 'noboxes')
  256. * @return int 1 if OK, 0 if KO
  257. */
  258. public function remove($options = '')
  259. {
  260. $sql = array();
  261. return $this->_remove($sql, $options);
  262. }
  263. }