modCron.class.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. <?php
  2. /* Copyright (C) 2012 Nicolas Villa aka Boyquotes http://informetic.fr
  3. * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
  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. /**
  19. * \defgroup cron Module cron
  20. * \brief cron module descriptor.
  21. * \file htdocs/core/modules/modCron.class.php
  22. * \ingroup cron
  23. * \brief Description and activation file for the module Jobs
  24. */
  25. include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
  26. /**
  27. * Class to describe a Cron module
  28. */
  29. class modCron extends DolibarrModules
  30. {
  31. /**
  32. * Constructor. Define names, constants, directories, boxes, permissions
  33. *
  34. * @param DoliDB $db Database handler
  35. */
  36. public function __construct($db)
  37. {
  38. global $langs, $conf;
  39. $this->db = $db;
  40. $this->numero = 2300;
  41. // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
  42. // It is used to group modules in module setup page
  43. $this->family = "base";
  44. // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
  45. $this->name = preg_replace('/^mod/i', '', get_class($this));
  46. $this->description = "Enable the Dolibarr cron service";
  47. // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
  48. $this->version = 'dolibarr';
  49. // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
  50. $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
  51. // Name of image file used for this module.
  52. $this->picto = 'cron';
  53. // Data directories to create when module is enabled
  54. $this->dirs = array();
  55. // Config pages
  56. //-------------
  57. $this->config_page_url = array("cron.php@cron");
  58. // Dependancies
  59. //-------------
  60. $this->hidden = !empty($conf->global->MODULE_CRON_DISABLED); // A condition to disable module
  61. $this->depends = array(); // List of modules id that must be enabled if this module is enabled
  62. $this->requiredby = array(); // List of modules id to disable if this one is disabled
  63. $this->conflictwith = array(); // List of modules id this module is in conflict with
  64. $this->langfiles = array("cron");
  65. // Constants
  66. //-----------
  67. $this->const = array(
  68. 0=>array(
  69. 'CRON_KEY',
  70. 'chaine',
  71. '',
  72. 'CRON KEY',
  73. 0,
  74. 'main',
  75. 0
  76. ),);
  77. // New pages on tabs
  78. // -----------------
  79. $this->tabs = array();
  80. // Boxes
  81. //------
  82. $this->boxes = array(
  83. 0 => array('file' => 'box_scheduled_jobs.php', 'enabledbydefaulton' => 'Home')
  84. );
  85. // Cronjobs
  86. $this->cronjobs = array(
  87. 0=>array('entity'=>0, 'label'=>'PurgeDeleteTemporaryFilesShort', 'jobtype'=>'method', 'class'=>'core/class/utils.class.php', 'objectname'=>'Utils', 'method'=>'purgeFiles', 'parameters'=>'tempfilesold+logfiles', 'comment'=>'PurgeDeleteTemporaryFiles', 'frequency'=>2, 'unitfrequency'=>3600 * 24 * 7, 'priority'=>50, 'status'=>1, 'test'=>true),
  88. 1=>array('entity'=>0, 'label'=>'MakeLocalDatabaseDumpShort', 'jobtype'=>'method', 'class'=>'core/class/utils.class.php', 'objectname'=>'Utils', 'method'=>'dumpDatabase', 'parameters'=>'none,auto,1,auto,10', 'comment'=>'MakeLocalDatabaseDump', 'frequency'=>1, 'unitfrequency'=>3600 * 24 * 7, 'priority'=>90, 'status'=>0, 'test'=>in_array($this->db->type, array('mysql', 'mysqli'))),
  89. // 1=>array('entity'=>0, 'label'=>'My label', 'jobtype'=>'command', 'command'=>'', 'parameters'=>'', 'comment'=>'Comment', 'frequency'=>1, 'unitfrequency'=>3600*24)
  90. );
  91. // Permissions
  92. $this->rights = array(); // Permission array used by this module
  93. $this->rights_class = 'cron';
  94. $r = 0;
  95. $this->rights[$r][0] = 23001;
  96. $this->rights[$r][1] = 'Read cron jobs';
  97. $this->rights[$r][3] = 0;
  98. $this->rights[$r][4] = 'read';
  99. $r++;
  100. $this->rights[$r][0] = 23002;
  101. $this->rights[$r][1] = 'Create cron Jobs';
  102. $this->rights[$r][3] = 0;
  103. $this->rights[$r][4] = 'create';
  104. $r++;
  105. $this->rights[$r][0] = 23003;
  106. $this->rights[$r][1] = 'Delete cron Jobs';
  107. $this->rights[$r][3] = 0;
  108. $this->rights[$r][4] = 'delete';
  109. $r++;
  110. $this->rights[$r][0] = 23004;
  111. $this->rights[$r][1] = 'Execute cron Jobs';
  112. $this->rights[$r][3] = 0;
  113. $this->rights[$r][4] = 'execute';
  114. $r++;
  115. // Main menu entries
  116. $r = 0;
  117. $this->menu[$r] = array('fk_menu'=>'fk_mainmenu=home,fk_leftmenu=admintools', // Use 'fk_mainmenu=xxx' or 'fk_mainmenu=xxx,fk_leftmenu=yyy' where xxx is mainmenucode and yyy is a leftmenucode
  118. 'type'=>'left', // This is a Left menu entry
  119. 'titre'=>'CronList',
  120. 'url'=>'/cron/list.php?leftmenu=admintools',
  121. 'langs'=>'cron', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
  122. 'position'=>200,
  123. 'enabled'=>'$conf->cron->enabled && preg_match(\'/^(admintools|all)/\', $leftmenu)', // 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.
  124. 'perms'=>'$user->rights->cron->read', // Use 'perms'=>'$user->rights->mymodule->level1->level2' if you want your menu with a permission rules
  125. 'target'=>'',
  126. 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
  127. $r++;
  128. }
  129. }