dolibarr 24.0.0-beta
modPrelevement.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2010-2011 Juanjo Menent <jmenent@2byte.es>
6 * Copyright (C) 2026 Frédéric France <frederic.france@free.fr>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
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 = 57;
49
50 $this->family = "financial";
51 $this->module_position = '52';
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 = "Management of Direct Debit orders";
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 // Name of png file (without png) used for this module
61 $this->picto = 'payment';
62
63 // Data directories to create when module is enabled
64 $this->dirs = array("/prelevement/temp", "/prelevement/receipts");
65
66 // Dependencies
67 $this->hidden = false; // A condition to hide module
68 $this->depends = array("modFacture", "modBanque"); // List of module class names as string that must be enabled if this module is enabled
69 $this->requiredby = array(); // 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(7, 0); // Minimum version of PHP required by module
72
73 // Config pages
74 $this->config_page_url = array("prelevement.php");
75
76 // Constants
77 $this->const = [
78 [
79 "BANK_ADDON_PDF",
80 "chaine",
81 "sepamandate",
82 'Name of manager to generate SEPA mandate',
83 0,
84 ],
85 ];
86
87 // Boxes
88 $this->boxes = array();
89
90 // Permissions
91 $this->rights = array();
92 $this->rights_class = 'prelevement';
93 $r = 0;
94 $r++;
95 $this->rights[$r][0] = 151;
96 $this->rights[$r][1] = 'Read direct debit payment orders';
97 $this->rights[$r][2] = 'r';
98 $this->rights[$r][3] = 0;
99 $this->rights[$r][4] = 'bons';
100 $this->rights[$r][5] = 'lire';
101
102 $r++;
103 $this->rights[$r][0] = 152;
104 $this->rights[$r][1] = 'Create/modify a direct debit payment order';
105 $this->rights[$r][2] = 'w';
106 $this->rights[$r][3] = 0;
107 $this->rights[$r][4] = 'bons';
108 $this->rights[$r][5] = 'creer';
109
110 $r++;
111 $this->rights[$r][0] = 153;
112 $this->rights[$r][1] = 'Send/Transmit direct debit payment orders';
113 $this->rights[$r][2] = 'a';
114 $this->rights[$r][3] = 0;
115 $this->rights[$r][4] = 'bons';
116 $this->rights[$r][5] = 'send';
117
118 $r++;
119 $this->rights[$r][0] = 154;
120 $this->rights[$r][1] = 'Record Credits/Rejects of direct debit payment orders';
121 $this->rights[$r][2] = 'a';
122 $this->rights[$r][3] = 0;
123 $this->rights[$r][4] = 'bons';
124 $this->rights[$r][5] = 'credit';
125
126 // Menus
127 //-------
128 $this->menu = 1; // This module add menu entries. They are coded into menu manager.
129 }
130
131
140 public function init($options = '')
141 {
142 global $conf;
143
144 // Permissions
145 $this->remove($options);
146
147 $sql = array(
148 "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = '".$this->db->escape($this->const[0][2])."' AND type = 'bankaccount' AND entity = ".((int) $conf->entity),
149 "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('".$this->db->escape($this->const[0][2])."','bankaccount',".((int) $conf->entity).")",
150 );
151
152 return $this->_init($sql, $options);
153 }
154}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
Class to describe and enable module of payment by Direct Debit.
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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $conf
The main.inc.php has been included so the following variable are now defined:
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133