dolibarr  20.0.0-alpha
modPaybox.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program. If not, see <https://www.gnu.org/licenses/>.
18  */
19 
27 include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
28 
29 
34 {
40  public function __construct($db)
41  {
42  $this->db = $db;
43 
44  // Id for module (must be unique).
45  // Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
46  $this->numero = 50000;
47  // Key text used to identify module (for permissions, menus, etc...)
48  $this->rights_class = 'paybox';
49 
50  // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
51  // It is used to group modules in module setup page
52  $this->family = "interface";
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  // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
56  $this->description = "Module to offer an online payment page by credit card with PayBox";
57  // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
58  $this->version = 'dolibarr_deprecated';
59  // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
60  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
61  // Name of image file used for this module.
62  // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
63  // If file is in module/img directory, use this->picto=DOL_URL_ROOT.'/module/img/file.png'
64  $this->picto = 'paybox@paybox';
65 
66  // Data directories to create when module is enabled.
67  $this->dirs = array('/paybox/temp');
68 
69  // Config pages. Put here list of php page names stored in admmin directory used to setup module.
70  $this->config_page_url = array("paybox.php@paybox");
71 
72  // Dependencies
73  $this->hidden = false; // A condition to hide module
74  $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
75  $this->requiredby = array(); // List of module ids to disable if this one is disabled
76  $this->conflictwith = array(); // List of module class names as string this module is in conflict with
77  $this->phpmin = array(7, 0); // Minimum version of PHP required by module
78  $this->need_dolibarr_version = array(2, 6); // Minimum version of Dolibarr required by module
79  $this->langfiles = array("paybox");
80 
81  // Constants
82  $this->const = array(); // List of particular constants to add when module is enabled
83  //Example: $this->const=array(0=>array('MODULE_MY_NEW_CONST1','chaine','myvalue','This is a constant to add',0),
84  // 1=>array('MODULE_MY_NEW_CONST2','chaine','myvalue','This is another constant to add',0) );
85 
86  // New pages on tabs
87  $this->tabs = array();
88 
89 
90  // Boxes
91  $this->boxes = array(); // List of boxes
92  $r = 0;
93 
94  // Add here list of php file(s) stored in core/boxes that contains class to show a box.
95  // Example:
96  //$this->boxes[$r][1] = "myboxa.php";
97  //$r++;
98  //$this->boxes[$r][1] = "myboxb.php";
99  //$r++;
100 
101 
102  // Permissions
103  $this->rights = array(); // Permission array used by this module
104  $r = 0; // @phan-suppress-current-line PhanPluginRedundantAssignment
105 
106  // Add here list of permission defined by an id, a label, a boolean and two constant strings.
107  // Example:
108  // $this->rights[$r][0] = 2000; // Permission id (must not be already used)
109  // $this->rights[$r][1] = 'Permision label'; // Permission label
110  // $this->rights[$r][3] = 0; // Permission by default for new user (0/1)
111  // $this->rights[$r][4] = 'level1'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
112  // $this->rights[$r][5] = 'level2'; // In php code, permission will be checked by test if ($user->rights->permkey->level1->level2)
113  // $r++;
114 
115 
116  // Main menu entries
117  $this->menu = array(); // List of menus to add
118  $r = 0; // @phan-suppress-current-line PhanPluginRedundantAssignment
119 
120  // Add here entries to declare new menus
121  // Example to declare the Top Menu entry:
122  // $this->menu[$r]=array( 'fk_menu'=>0, // Put 0 if this is a top menu
123  // 'type'=>'top', // This is a Top menu entry
124  // 'titre'=>'MyModule top menu',
125  // 'mainmenu'=>'mymodule',
126  // 'url'=>'/mymodule/pagetop.php',
127  // 'langs'=>'mylangfile', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
128  // 'position'=>100,
129  // 'perms'=>'1', // Use 'perms'=>'$user->hasRight("mymodule","level1","level2")' if you want your menu with a permission rules
130  // 'target'=>'',
131  // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
132  // $r++;
133  //
134  // Example to declare a Left Menu entry:
135  // $this->menu[$r]=array( 'fk_menu'=>'r=0', // Use r=value where r is index key used for the parent menu entry (higher parent must be a top menu entry)
136  // 'type'=>'left', // This is a Left menu entry
137  // 'titre'=>'MyModule left menu 1',
138  // 'mainmenu'=>'mymodule',
139  // 'url'=>'/mymodule/pagelevel1.php',
140  // 'langs'=>'mylangfile', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
141  // 'position'=>100,
142  // 'perms'=>'1', // Use 'perms'=>'$user->hasRight("mymodule","level1","level2")' if you want your menu with a permission rules
143  // 'target'=>'',
144  // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
145  // $r++;
146  //
147  // Example to declare another Left Menu entry:
148  // $this->menu[$r]=array( 'fk_menu'=>'r=1', // Use r=value where r is index key used for the parent menu entry (higher parent must be a top menu entry)
149  // 'type'=>'left', // This is a Left menu entry
150  // 'titre'=>'MyModule left menu 2',
151  // 'mainmenu'=>'mymodule',
152  // 'url'=>'/mymodule/pagelevel2.php',
153  // 'langs'=>'mylangfile', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
154  // 'position'=>100,
155  // 'perms'=>'1', // Use 'perms'=>'$user->hasRight("mymodule","level1","level2")' if you want your menu with a permission rules
156  // 'target'=>'',
157  // 'user'=>2); // 0=Menu for internal users, 1=external users, 2=both
158  // $r++;
159 
160 
161  // Exports
162  $r = 1;
163 
164  // Example:
165  // $this->export_code[$r]=$this->rights_class.'_'.$r;
166  // $this->export_label[$r]='CustomersInvoicesAndInvoiceLines'; // Translation key (used only if key ExportDataset_xxx_z not found)
167  // $this->export_permission[$r]=array(array("facture","facture","export"));
168  // $this->export_fields_array[$r]=array(
169  // 's.rowid'=>"IdCompany",'s.nom'=>'CompanyName','s.address'=>'Address','s.zip'=>'Zip','s.town'=>'Town',
170  // 's.fk_pays'=>'Country','s.phone'=>'Phone','s.siren'=>'ProfId1','s.siret'=>'ProfId2','s.ape'=>'ProfId3',
171  // 's.idprof4'=>'ProfId4','s.code_compta'=>'CustomerAccountancyCode','s.code_compta_fournisseur'=>'SupplierAccountancyCode',
172  // 'f.rowid'=>"InvoiceId",'f.ref'=>"InvoiceRef",'f.datec'=>"InvoiceDateCreation",'f.datef'=>"DateInvoice",'f.total_ht'=>"TotalHT",
173  // 'f.total_ttc'=>"TotalTTC",'f.total_tva'=>"TotalVAT",'f.paye'=>"InvoicePaid",'f.fk_statut'=>'InvoiceStatus','f.note'=>"InvoiceNote",'fd.rowid'=>'LineId',
174  // 'fd.description'=>"LineDescription",'fd.price'=>"LineUnitPrice",'fd.tva_tx'=>"LineVATRate",'fd.qty'=>"LineQty",'fd.total_ht'=>"LineTotalHT",
175  // 'fd.total_tva'=>"LineTotalTVA",'fd.total_ttc'=>"LineTotalTTC",'fd.date_start'=>"DateStart",'fd.date_end'=>"DateEnd",'fd.fk_product'=>'ProductId','p.ref'=>'ProductRef',
176  // );
177  // $this->export_entities_array[$r]=array(
178  // 's.rowid'=>"company",'s.nom'=>'company','s.address'=>'company','s.zip'=>'company','s.town'=>'company',
179  // 's.fk_pays'=>'company','s.phone'=>'company','s.siren'=>'company','s.siret'=>'company','s.ape'=>'company','s.idprof4'=>'company',
180  // 's.code_compta'=>'company','s.code_compta_fournisseur'=>'company','f.rowid'=>"invoice",'f.ref'=>"invoice",'f.datec'=>"invoice",
181  // 'f.datef'=>"invoice",'f.total_ht'=>"invoice",'f.total_ttc'=>"invoice",'f.total_tva'=>"invoice",'f.paye'=>"invoice",'f.fk_statut'=>'invoice',
182  // 'f.note'=>"invoice",'fd.rowid'=>'invoice_line','fd.description'=>"invoice_line",'fd.price'=>"invoice_line",'fd.total_ht'=>"invoice_line",
183  // 'fd.total_tva'=>"invoice_line",'fd.total_ttc'=>"invoice_line",'fd.tva_tx'=>"invoice_line",'fd.qty'=>"invoice_line",'fd.date_start'=>"invoice_line",
184  // 'fd.date_end'=>"invoice_line",'fd.fk_product'=>'product','p.ref'=>'product',
185  // );
186  // $this->export_sql_start[$r]='SELECT DISTINCT ';
187  // $this->export_sql_end[$r] =' FROM ('.MAIN_DB_PREFIX.'facture as f, '.MAIN_DB_PREFIX.'facturedet as fd, '.MAIN_DB_PREFIX.'societe as s)';
188  // $this->export_sql_end[$r] .=' LEFT JOIN '.MAIN_DB_PREFIX.'product as p on (fd.fk_product = p.rowid)';
189  // $this->export_sql_end[$r] .=' WHERE f.fk_soc = s.rowid AND f.rowid = fd.fk_facture';
190  // $r++;
191  }
192 }
Class DolibarrModules.
Description and activation class for module Paybox.
__construct($db)
Constructor.
print *****$script_file(".$version.") pid 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:125