dolibarr 21.0.0-alpha
modComptabilite.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2008 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 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
30include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
31
32
37{
43 public function __construct($db)
44 {
45 global $conf;
46
47 $this->db = $db;
48 $this->numero = 10;
49
50 $this->family = "financial";
51 $this->module_position = '60';
52 // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
53 $this->name = preg_replace('/^mod/i', '', get_class($this));
54 $this->description = "Gestion sommaire de comptabilite";
55
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->picto = 'accountancy';
61
62 // Config pages
63 $this->config_page_url = array("compta.php");
64
65 // Dependencies
66 $this->depends = array("modFacture", "modBanque");
67 $this->requiredby = array();
68 $this->conflictwith = array("modAccounting");
69 $this->langfiles = array("compta");
70
71 // Constants
72 $this->const = array();
73
74 // Data directories to create when module is enabled
75 $this->dirs = array(
76 "/comptabilite/temp",
77 "/comptabilite/rapport",
78 "/comptabilite/export",
79 "/comptabilite/bordereau"
80 );
81
82 // Boxes
83 $this->boxes = array();
84
85 // Permissions
86 $this->rights = array();
87 $this->rights_class = 'compta';
88 $r = 0;
89
90 $r++;
91 $this->rights[$r][0] = 95;
92 $this->rights[$r][1] = 'Lire CA, bilans, resultats';
93 $this->rights[$r][2] = 'r';
94 $this->rights[$r][3] = 0;
95 $this->rights[$r][4] = 'resultat';
96 $this->rights[$r][5] = 'lire';
97
98
99 // Menus
100 //-------
101 $this->menu = 1; // This module add menu entries. They are coded into menu manager.
102 }
103
104
113 public function init($options = '')
114 {
115 global $conf;
116
117 // Nettoyage avant activation
118 $this->remove($options);
119
120 $sql = array();
121
122 return $this->_init($sql, $options);
123 }
124}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
Class to describe and enable module Comptabilite.
init($options='')
Function called when module is enabled.
__construct($db)
Constructor.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:142