dolibarr 21.0.0-alpha
modLoan.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2014 Alexandre Spangaro <aspangaro@open-dsi.fr>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 * or see https://www.gnu.org/
17 */
18
26include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
27
28
33{
39 public function __construct($db)
40 {
41 global $conf;
42
43 $this->db = $db;
44 $this->numero = 520;
45
46 $this->family = "financial";
47 // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
48 $this->name = preg_replace('/^mod/i', '', get_class($this));
49 // Module description used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
50 $this->description = "Loans management";
51
52 // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
53 $this->version = 'dolibarr';
54
55 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
56 $this->picto = 'money-bill-alt';
57
58 // Data directories to create when module is enabled
59 $this->dirs = array("/loan/temp");
60
61 // Config pages
62 $this->config_page_url = array('loan.php');
63
64 // Dependencies
65 $this->hidden = false; // A condition to hide module
66 $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
67 $this->requiredby = array(); // List of module ids to disable if this one is disabled
68 $this->conflictwith = array(); // List of module class names as string this module is in conflict with
69 $this->phpmin = array(7, 0); // Minimum version of PHP required by module
70 $this->langfiles = array("loan");
71
72 // Constants
73 $this->const = array();
74 $this->const[0] = array(
75 "LOAN_ACCOUNTING_ACCOUNT_CAPITAL",
76 "chaine",
77 "164"
78 );
79 $this->const[1] = array(
80 "LOAN_ACCOUNTING_ACCOUNT_INTEREST",
81 "chaine",
82 "6611"
83 );
84 $this->const[2] = array(
85 "LOAN_ACCOUNTING_ACCOUNT_INSURANCE",
86 "chaine",
87 "6162"
88 );
89
90 // Boxes
91 $this->boxes = array();
92
93 // Permissions
94 $this->rights = array();
95 $this->rights_class = 'loan';
96 $r = 0;
97
98 $r++;
99 $this->rights[$r][0] = 521;
100 $this->rights[$r][1] = 'Read loans';
101 $this->rights[$r][2] = 'r';
102 $this->rights[$r][3] = 0;
103 $this->rights[$r][4] = 'read';
104 $this->rights[$r][5] = '';
105
106 $r++;
107 $this->rights[$r][0] = 522;
108 $this->rights[$r][1] = 'Create/modify loans';
109 $this->rights[$r][2] = 'w';
110 $this->rights[$r][3] = 0;
111 $this->rights[$r][4] = 'write';
112 $this->rights[$r][5] = '';
113
114 $r++;
115 $this->rights[$r][0] = 524;
116 $this->rights[$r][1] = 'Delete loans';
117 $this->rights[$r][2] = 'd';
118 $this->rights[$r][3] = 0;
119 $this->rights[$r][4] = 'delete';
120 $this->rights[$r][5] = '';
121
122 $r++;
123 $this->rights[$r][0] = 525;
124 $this->rights[$r][1] = 'Access loan calculator';
125 $this->rights[$r][2] = 'r';
126 $this->rights[$r][3] = 0;
127 $this->rights[$r][4] = 'calc';
128 $this->rights[$r][5] = '';
129
130 $r++;
131 $this->rights[$r][0] = 527;
132 $this->rights[$r][1] = 'Export loans';
133 $this->rights[$r][2] = 'r';
134 $this->rights[$r][3] = 0;
135 $this->rights[$r][4] = 'export';
136 $this->rights[$r][5] = '';
137
138
139 // Menus
140 //-------
141 $this->menu = 1; // This module add menu entries. They are coded into menu manager.
142
143
144 // Exports
145 //--------
146 $r = 0;
147 }
148
149
158 public function init($options = '')
159 {
160 $result = $this->_load_tables('/install/mysql/', 'loan');
161 if ($result < 0) {
162 return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
163 }
164
165 // Clean before activation
166 $this->remove($options);
167
168 $sql = array();
169
170 return $this->_init($sql, $options);
171 }
172}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Class to manage loan module.
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