dolibarr  16.0.5
modProjet.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
5  * Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
6  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
7  * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
8  * Copyright (C) 2014 Charles-Fr BENKE <charles.fr@benke.fr>
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program. If not, see <https://www.gnu.org/licenses/>.
22  */
23 
31 include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
32 
33 
38 {
44  public function __construct($db)
45  {
46  global $conf;
47 
48  $this->db = $db;
49  $this->numero = 400;
50 
51  $this->family = "projects";
52  $this->module_position = '14';
53  // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
54  $this->name = preg_replace('/^mod/i', '', get_class($this));
55  $this->description = "Gestion des projets";
56  // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
57  $this->version = 'dolibarr';
58 
59  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
60  $this->config_page_url = array("project.php@projet");
61  $this->picto = 'project';
62 
63  // Data directories to create when module is enabled
64  $this->dirs = array("/projet/temp");
65 
66  // Dependencies
67  $this->hidden = false; // A condition to hide module
68  $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
69  $this->requiredby = array('modEventOrganization'); // List of module ids to disable if this one is disabled
70  $this->conflictwith = array(); // List of module class names as string this module is in conflict with
71  $this->phpmin = array(5, 6); // Minimum version of PHP required by module
72  $this->langfiles = array('projects');
73 
74  // Constants
75  $this->const = array();
76  $r = 0;
77 
78  $this->const[$r][0] = "PROJECT_ADDON_PDF";
79  $this->const[$r][1] = "chaine";
80  $this->const[$r][2] = "baleine";
81  $this->const[$r][3] = 'Name of PDF/ODT project manager class';
82  $this->const[$r][4] = 0;
83  $r++;
84 
85  $this->const[$r][0] = "PROJECT_ADDON";
86  $this->const[$r][1] = "chaine";
87  $this->const[$r][2] = "mod_project_simple";
88  $this->const[$r][3] = 'Name of Numbering Rule project manager class';
89  $this->const[$r][4] = 0;
90  $r++;
91 
92  $this->const[$r][0] = "PROJECT_ADDON_PDF_ODT_PATH";
93  $this->const[$r][1] = "chaine";
94  $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/projects";
95  $this->const[$r][3] = "";
96  $this->const[$r][4] = 0;
97  $r++;
98 
99  $this->const[$r][0] = "PROJECT_TASK_ADDON_PDF";
100  $this->const[$r][1] = "chaine";
101  $this->const[$r][2] = "";
102  $this->const[$r][3] = 'Name of PDF/ODT tasks manager class';
103  $this->const[$r][4] = 0;
104  $r++;
105 
106  $this->const[$r][0] = "PROJECT_TASK_ADDON";
107  $this->const[$r][1] = "chaine";
108  $this->const[$r][2] = "mod_task_simple";
109  $this->const[$r][3] = 'Name of Numbering Rule task manager class';
110  $this->const[$r][4] = 0;
111  $r++;
112 
113  $this->const[$r][0] = "PROJECT_TASK_ADDON_PDF_ODT_PATH";
114  $this->const[$r][1] = "chaine";
115  $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/tasks";
116  $this->const[$r][3] = "";
117  $this->const[$r][4] = 0;
118  $r++;
119 
120  $this->const[$r][0] = "PROJECT_USE_OPPORTUNITIES";
121  $this->const[$r][1] = "chaine";
122  $this->const[$r][2] = "1";
123  $this->const[$r][3] = "";
124  $this->const[$r][4] = 0;
125  $r++;
126 
127  $this->const[$r][0] = "MAIN_DELAY_PROJECT_TO_CLOSE";
128  $this->const[$r][1] = "chaine";
129  $this->const[$r][2] = "7";
130  $this->const[$r][3] = "";
131  $this->const[$r][4] = 0;
132  $r++;
133  $this->const[$r][0] = "MAIN_DELAY_TASKS_TODO";
134  $this->const[$r][1] = "chaine";
135  $this->const[$r][2] = "7";
136  $this->const[$r][3] = "";
137  $this->const[$r][4] = 0;
138  $r++;
139 
140  // Boxes
141  $this->boxes = array(
142  0=>array('file'=>'box_project.php', 'enabledbydefaulton'=>'Home'),
143  1=>array('file'=>'box_task.php', 'enabledbydefaulton'=>'Home'),
144  2=>array('file'=>'box_validated_projects.php', 'enabledbydefaulton'=>'Home'),
145  3=>array('file'=>'box_funnel_of_prospection.php', 'enabledbydefaulton'=>'Home'),
146  );
147 
148  // Permissions
149  $this->rights = array();
150  $this->rights_class = 'projet';
151  $r = 0;
152 
153  $r++;
154  $this->rights[$r][0] = 41; // id de la permission
155  $this->rights[$r][1] = "Read projects and tasks (shared projects or projects I am contact for)"; // libelle de la permission
156  $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
157  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
158  $this->rights[$r][4] = 'lire';
159 
160  $r++;
161  $this->rights[$r][0] = 42; // id de la permission
162  $this->rights[$r][1] = "Create/modify projects and tasks (shared projects or projects I am contact for)"; // libelle de la permission
163  $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
164  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
165  $this->rights[$r][4] = 'creer';
166 
167  $r++;
168  $this->rights[$r][0] = 44; // id de la permission
169  $this->rights[$r][1] = "Delete project and tasks (shared projects or projects I am contact for)"; // libelle de la permission
170  $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
171  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
172  $this->rights[$r][4] = 'supprimer';
173 
174  $r++;
175  $this->rights[$r][0] = 45; // id de la permission
176  $this->rights[$r][1] = "Export projects"; // libelle de la permission
177  $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
178  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
179  $this->rights[$r][4] = 'export';
180 
181  $r++;
182  $this->rights[$r][0] = 141; // id de la permission
183  $this->rights[$r][1] = "Read all projects and tasks (also private projects I am not contact for)"; // libelle de la permission
184  $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
185  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
186  $this->rights[$r][4] = 'all';
187  $this->rights[$r][5] = 'lire';
188 
189  $r++;
190  $this->rights[$r][0] = 142; // id de la permission
191  $this->rights[$r][1] = "Create/modify all projects and tasks (also private projects I am not contact for)"; // libelle de la permission
192  $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
193  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
194  $this->rights[$r][4] = 'all';
195  $this->rights[$r][5] = 'creer';
196 
197  $r++;
198  $this->rights[$r][0] = 144; // id de la permission
199  $this->rights[$r][1] = "Delete all projects and tasks (also private projects I am not contact for)"; // libelle de la permission
200  $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
201  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
202  $this->rights[$r][4] = 'all';
203  $this->rights[$r][5] = 'supprimer';
204 
205  $r++;
206  $this->rights[$r][0] = 145; // id de la permission
207  $this->rights[$r][1] = "Can enter time consumed on assigned tasks (timesheet)"; // libelle de la permission
208  $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
209  $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
210  $this->rights[$r][4] = 'time';
211 
212  // Menus
213  //-------
214  $this->menu = 1; // This module add menu entries. They are coded into menu manager.
215 
216 
217  //Exports
218  //--------
219  $r = 1;
220 
221  $this->export_code[$r] = $this->rights_class.'_'.$r;
222  $this->export_label[$r] = 'ProjectsAndTasksLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
223  $this->export_permission[$r] = array(array("projet", "export"));
224  $this->export_dependencies_array[$r] = array('projecttask'=>'pt.rowid', 'task_time'=>'ptt.rowid');
225 
226  $this->export_TypeFields_array[$r] = array(
227  's.rowid'=>"Numeric", 's.nom'=>'Text', 's.address'=>'Text', 's.zip'=>'Text', 's.town'=>'Text', 's.fk_pays'=>'List:c_country:label',
228  's.phone'=>'Text', 's.email'=>'Text', 's.siren'=>'Text', 's.siret'=>'Text', 's.ape'=>'Text', 's.idprof4'=>'Text', 's.code_compta'=>'Text', 's.code_compta_fournisseur'=>'Text',
229  'p.rowid'=>"Numeric", 'p.ref'=>"Text", 'p.title'=>"Text",
230  'p.usage_opportunity'=>'Boolean', 'p.usage_task'=>'Boolean', 'p.usage_bill_time'=>'Boolean',
231  'p.datec'=>"Date", 'p.dateo'=>"Date", 'p.datee'=>"Date", 'p.fk_statut'=>'Status', 'cls.code'=>"Text", 'p.opp_percent'=>'Numeric', 'p.opp_amount'=>'Numeric', 'p.description'=>"Text", 'p.entity'=>'Numeric', 'p.budget_amount'=>'Numeric',
232  'pt.rowid'=>'Numeric', 'pt.ref'=>'Text', 'pt.label'=>'Text', 'pt.dateo'=>"Date", 'pt.datee'=>"Date", 'pt.duration_effective'=>"Duree", 'pt.planned_workload'=>"Numeric", 'pt.progress'=>"Numeric", 'pt.description'=>"Text",
233  'ptt.rowid'=>'Numeric', 'ptt.task_date'=>'Date', 'ptt.task_duration'=>"Duree", 'ptt.fk_user'=>"FormSelect:select_dolusers", 'ptt.note'=>"Text"
234  );
235  $this->export_entities_array[$r] = array(
236  's.rowid'=>"company", 's.nom'=>'company', 's.address'=>'company', 's.zip'=>'company', 's.town'=>'company', 's.fk_pays'=>'company',
237  's.phone'=>'company', 's.email'=>'company', 's.siren'=>'company', 's.siret'=>'company', 's.ape'=>'company', 's.idprof4'=>'company', 's.code_compta'=>'company', 's.code_compta_fournisseur'=>'company'
238  );
239  $this->export_fields_array[$r] = array(
240  's.rowid'=>"IdCompany", 's.nom'=>'CompanyName', 's.address'=>'Address', 's.zip'=>'Zip', 's.town'=>'Town', 's.fk_pays'=>'Country',
241  's.phone'=>'Phone', 's.email'=>'Email', 's.siren'=>'ProfId1', 's.siret'=>'ProfId2', 's.ape'=>'ProfId3', 's.idprof4'=>'ProfId4', 's.code_compta'=>'CustomerAccountancyCode', 's.code_compta_fournisseur'=>'SupplierAccountancyCode',
242  'p.rowid'=>"ProjectId", 'p.ref'=>"RefProject", 'p.title'=>'ProjectLabel',
243  'p.usage_opportunity'=>'ProjectFollowOpportunity', 'p.usage_task'=>'ProjectFollowTasks', 'p.usage_bill_time'=>'BillTime',
244  'p.datec'=>"DateCreation", 'p.dateo'=>"DateStart", 'p.datee'=>"DateEnd", 'p.fk_statut'=>'ProjectStatus', 'cls.code'=>'OpportunityStatus', 'p.opp_percent'=>'OpportunityProbability', 'p.opp_amount'=>'OpportunityAmount', 'p.budget_amount'=>'Budget', 'p.description'=>"Description"
245  );
246  // Add multicompany field
247  if (!empty($conf->global->MULTICOMPANY_ENTITY_IN_EXPORT_IF_SHARED)) {
248  $nbofallowedentities = count(explode(',', getEntity('project'))); // If project are shared, nb will be > 1
249  if (!empty($conf->multicompany->enabled) && $nbofallowedentities > 1) {
250  $this->export_fields_array[$r] += array('p.entity'=>'Entity');
251  }
252  }
253  if (empty($conf->global->PROJECT_USE_OPPORTUNITIES)) {
254  unset($this->export_fields_array[$r]['p.opp_percent']);
255  unset($this->export_fields_array[$r]['p.opp_amount']);
256  unset($this->export_fields_array[$r]['cls.code']);
257  }
258 
259  // Add fields for project
260  $this->export_fields_array[$r] = array_merge($this->export_fields_array[$r], array());
261  // Add extra fields for project
262  $keyforselect = 'projet';
263  $keyforelement = 'project';
264  $keyforaliasextra = 'extra';
265  include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
266  // Add fields for tasks
267  $this->export_fields_array[$r] = array_merge($this->export_fields_array[$r], array('pt.rowid'=>'TaskId', 'pt.ref'=>'RefTask', 'pt.label'=>'LabelTask', 'pt.dateo'=>"TaskDateStart", 'pt.datee'=>"TaskDateEnd", 'pt.duration_effective'=>"DurationEffective", 'pt.planned_workload'=>"PlannedWorkload", 'pt.progress'=>"Progress", 'pt.description'=>"TaskDescription"));
268  $this->export_entities_array[$r] = array_merge($this->export_entities_array[$r], array('pt.rowid'=>'projecttask', 'pt.ref'=>'projecttask', 'pt.label'=>'projecttask', 'pt.dateo'=>"projecttask", 'pt.datee'=>"projecttask", 'pt.duration_effective'=>"projecttask", 'pt.planned_workload'=>"projecttask", 'pt.progress'=>"projecttask", 'pt.description'=>"projecttask"));
269  // Add extra fields for task
270  $keyforselect = 'projet_task';
271  $keyforelement = 'projecttask';
272  $keyforaliasextra = 'extra2';
273  include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
274  // End add extra fields
275  $this->export_fields_array[$r] = array_merge($this->export_fields_array[$r], array('ptt.rowid'=>'IdTaskTime', 'ptt.task_date'=>'TaskTimeDate', 'ptt.task_duration'=>"TimesSpent", 'ptt.fk_user'=>"TaskTimeUser", 'ptt.note'=>"TaskTimeNote"));
276  $this->export_entities_array[$r] = array_merge($this->export_entities_array[$r], array('ptt.rowid'=>'task_time', 'ptt.task_date'=>'task_time', 'ptt.task_duration'=>"task_time", 'ptt.fk_user'=>"task_time", 'ptt.note'=>"task_time"));
277  if (empty($conf->global->PROJECT_HIDE_TASKS)) {
278  $this->export_fields_array[$r] = array_merge($this->export_fields_array[$r], array('f.ref'=>"Billed"));
279  $this->export_entities_array[$r] = array_merge($this->export_entities_array[$r], array('f.ref'=>"task_time"));
280  }
281  $this->export_sql_start[$r] = 'SELECT DISTINCT ';
282  $this->export_sql_end[$r] = ' FROM '.MAIN_DB_PREFIX.'projet as p';
283  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet_extrafields as extra ON p.rowid = extra.fk_object';
284  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'c_lead_status as cls ON p.fk_opp_status = cls.rowid';
285  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX."projet_task as pt ON p.rowid = pt.fk_projet";
286  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'projet_task_extrafields as extra2 ON pt.rowid = extra2.fk_object';
287  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX."projet_task_time as ptt ON pt.rowid = ptt.fk_task";
288  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'societe as s ON p.fk_soc = s.rowid';
289  if (empty($conf->global->PROJECT_HIDE_TASKS)) {
290  $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'facture as f ON ptt.invoice_id = f.rowid';
291  }
292  $this->export_sql_end[$r] .= " WHERE p.entity IN (".getEntity('project').")";
293 
294 
295  // Import list of tasks
296  if (empty($conf->global->PROJECT_HIDE_TASKS)) {
297  $r++;
298  $this->import_code[$r] = 'tasksofprojects';
299  $this->import_label[$r] = 'ImportDatasetTasks';
300  $this->import_icon[$r] = 'task';
301  $this->import_entities_array[$r] = array('t.fk_projet'=>'project'); // We define here only fields that use another icon that the one defined into import_icon
302  $this->import_tables_array[$r] = array('t'=>MAIN_DB_PREFIX.'projet_task', 'extra'=>MAIN_DB_PREFIX.'projet_task_extrafields'); // List of tables to insert into (insert done in same order)
303  $this->import_fields_array[$r] = array('t.fk_projet'=>'ProjectRef*', 't.ref'=>'RefTask*', 't.label'=>'LabelTask*', 't.dateo'=>"DateStart", 't.datee'=>"DateEnd", 't.planned_workload'=>"PlannedWorkload", 't.progress'=>"Progress", 't.note_private'=>"NotePrivate", 't.note_public'=>"NotePublic", 't.datec'=>"DateCreation");
304  // Add extra fields
305  $sql = "SELECT name, label, fieldrequired FROM ".MAIN_DB_PREFIX."extrafields WHERE type <> 'separate' AND elementtype = 'projet_task' AND entity IN (0,".$conf->entity.")";
306  $resql = $this->db->query($sql);
307  if ($resql) { // This can fail when class is used on old database (during migration for example)
308  while ($obj = $this->db->fetch_object($resql)) {
309  $fieldname = 'extra.'.$obj->name;
310  $fieldlabel = ucfirst($obj->label);
311  $this->import_fields_array[$r][$fieldname] = $fieldlabel.($obj->fieldrequired ? '*' : '');
312  }
313  }
314  // End add extra fields
315  $this->import_fieldshidden_array[$r] = array('t.fk_user_creat'=>'user->id', 'extra.fk_object'=>'lastrowid-'.MAIN_DB_PREFIX.'projet_task'); // aliastable.field => ('user->id' or 'lastrowid-'.tableparent)
316  $this->import_convertvalue_array[$r] = array(
317  't.fk_projet'=>array('rule'=>'fetchidfromref', 'classfile'=>'/projet/class/project.class.php', 'class'=>'Project', 'method'=>'fetch', 'element'=>'Project'),
318  't.ref'=>array('rule'=>'getrefifauto', 'class'=>(empty($conf->global->PROJECT_TASK_ADDON) ? 'mod_task_simple' : $conf->global->PROJECT_TASK_ADDON), 'path'=>"/core/modules/project/task/".(empty($conf->global->PROJECT_TASK_ADDON) ? 'mod_task_simple' : $conf->global->PROJECT_TASK_ADDON).'.php')
319  );
320  //$this->import_convertvalue_array[$r]=array('s.fk_soc'=>array('rule'=>'lastrowid',table='t');
321  $this->import_regex_array[$r] = array('t.dateo'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$', 't.datee'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]$', 't.datec'=>'^[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]( [0-9][0-9]:[0-9][0-9]:[0-9][0-9])?$');
322  $this->import_examplevalues_array[$r] = array('t.fk_projet'=>'MyProjectRef', 't.ref'=>"auto or TK2010-1234", 't.label'=>"My task", 't.progress'=>"0 (not started) to 100 (finished)", 't.datec'=>'1972-10-10', 't.note_private'=>"My private note", 't.note_public'=>"My public note");
323  }
324  }
325 
326 
335  public function init($options = '')
336  {
337  global $conf, $langs;
338 
339  // Permissions
340  $this->remove($options);
341 
342  //ODT template for project
343  $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/projects/template_project.odt';
344  $dirodt = DOL_DATA_ROOT.'/doctemplates/projects';
345  $dest = $dirodt.'/template_project.odt';
346 
347  if (file_exists($src) && !file_exists($dest)) {
348  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
349  dol_mkdir($dirodt);
350  $result = dol_copy($src, $dest, 0, 0);
351  if ($result < 0) {
352  $langs->load("errors");
353  $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
354  return 0;
355  }
356  }
357 
358  //ODT template for tasks
359  $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/tasks/template_task_summary.odt';
360  $dirodt = DOL_DATA_ROOT.'/doctemplates/tasks';
361  $dest = $dirodt.'/template_task_summary.odt';
362 
363  if (file_exists($src) && !file_exists($dest)) {
364  require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
365  dol_mkdir($dirodt);
366  $result = dol_copy($src, $dest, 0, 0);
367  if ($result < 0) {
368  $langs->load("errors");
369  $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
370  return 0;
371  }
372  }
373 
374  $sql = array();
375  $sql[] = "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[3][2])."' AND type = 'task' AND entity = ".((int) $conf->entity);
376  $sql[] = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[3][2])."','task',".((int) $conf->entity).")";
377  $sql[] = "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'beluga' AND type = 'project' AND entity = ".((int) $conf->entity);
378  $sql[] = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('beluga','project',".((int) $conf->entity).")";
379  $sql[] = "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'baleine' AND type = 'project' AND entity = ".((int) $conf->entity);
380  $sql[] = "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('baleine','project',".((int) $conf->entity).")";
381 
382 
383  return $this->_init($sql, $options);
384  }
385 }
db
$conf db
API class for accounts.
Definition: inc.php:41
description
print *****$script_file(".$version.") pid cd cd cd description as description
Definition: email_expire_services_to_customers.php:83
modProjet\init
init($options='')
Function called when module is enabled.
Definition: modProjet.class.php:335
name
$conf db name
Definition: repair.php:122
modProjet\__construct
__construct($db)
Constructor.
Definition: modProjet.class.php:44
dol_copy
dol_copy($srcfile, $destfile, $newmask=0, $overwriteifexists=1)
Copy a file to another file.
Definition: files.lib.php:703
getEntity
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
Definition: functions.lib.php:148
DolibarrModules\_init
_init($array_sql, $options='')
Enables a module.
Definition: DolibarrModules.class.php:383
$resql
if(isModEnabled('facture') &&!empty($user->rights->facture->lire)) if((isModEnabled('fournisseur') &&empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) && $user->rights->fournisseur->facture->lire)||(isModEnabled('supplier_invoice') && $user->rights->supplier_invoice->lire)) if(isModEnabled('don') &&!empty($user->rights->don->lire)) if(isModEnabled('tax') &&!empty($user->rights->tax->charges->lire)) if(isModEnabled('facture') &&isModEnabled('commande') && $user->rights->commande->lire &&empty($conf->global->WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER)) $resql
Social contributions to pay.
Definition: index.php:742
dol_mkdir
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
Definition: functions.lib.php:6603
DolibarrModules
Class DolibarrModules.
Definition: DolibarrModules.class.php:37
modProjet
Class to describe and enable module Projet.
Definition: modProjet.class.php:37