// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
// If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
$this->picto='donation';
// Data directories to create when module is enabled.
// Example: this->dirs = array("/mymodule/temp");
$this->dirs=array("/subtotals/temp");
// Config pages
$this->config_page_url=array("subtotals.php");
// Dependencies
$this->hidden=false;// A condition to hide module
$this->depends=array();// List of module class names as string that must be enabled if this module is enabled
$this->requiredby=array();// List of module ids to disable if this one is disabled
$this->conflictwith=array();// List of module class names as string this module is in conflict with
$this->phpmin=array(7,0);// Minimum version of PHP required by module
$this->need_dolibarr_version=array(3,0);// Minimum version of Dolibarr required by module
$this->langfiles=array("subtotals");
// Constants
// Example: $this->const=array(0=>array('MYMODULE_MYNEWCONST1','chaine','myvalue','This is a constant to add',0),
// 1=>array('MYMODULE_MYNEWCONST2','chaine','myvalue','This is another constant to add',0) );
$this->const=array();// List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 0 or 'allentities')
// Array to add new pages in new tabs
//$this->tabs[] = array('data'=>'user:+paidholidays:CPTitreMenu:holiday:$user->rights->holiday->read:/holiday/list.php?mainmenu=hrm&id=__ID__'); // We avoid to get one tab for each module. RH data are already in RH tab.
$this->tabs[]=array();// To add a new tab identified by code tabname1
// Boxes
$this->boxes=array();// List of boxes
// Permissions
$this->rights=array();// Permission array used by this module
// Menus
//-------
$this->menu=1;// This module add menu entries. They are coded into menu manager.
// "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'holiday' AND entity = ".((int) $conf->entity),
// "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','holiday',".((int) $conf->entity).")"