dolibarr  16.0.5
modGeoIPMaxmind.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2009 Laurent Destailleur <eldy@users.sourceforge.net>
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  */
17 
26 include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
27 
28 
33 {
34 
40  public function __construct($db)
41  {
42  $this->db = $db;
43  $this->numero = 2900;
44 
45  // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
46  // It is used to group modules in module setup page
47  $this->family = "interface";
48  // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
49  $this->name = preg_replace('/^mod/i', '', get_class($this));
50  // Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
51  $this->description = "GeoIP Maxmind conversions capabilities";
52  // Possible values for version are: 'development', 'experimental', 'dolibarr' or version
53  $this->version = 'dolibarr';
54  // Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
55  $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
56  // Name of image file used for this module.
57  // If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
58  // If file is in module/images directory, use this->picto=DOL_URL_ROOT.'/module/images/file.png'
59  $this->picto = 'geoip';
60 
61  // Data directories to create when module is enabled
62  $this->dirs = array("/geoipmaxmind");
63 
64  // Config pages
65  $this->config_page_url = array("geoipmaxmind.php");
66 
67  // Dependencies
68  $this->hidden = false; // A condition to hide module
69  $this->depends = array(); // List of module class names as string that must be enabled if this module is enabled
70  $this->requiredby = array(); // List of module ids to disable if this one is disabled
71  $this->conflictwith = array(); // List of module class names as string this module is in conflict with
72  $this->phpmin = array(5, 6);
73  $this->phpmax = array();
74  $this->need_dolibarr_version = array(2, 7, -1); // Minimum version of Dolibarr required by module
75  $this->need_javascript_ajax = 1;
76 
77  // Constants
78  $this->const = array();
79 
80  // Boxes
81  $this->boxes = array();
82 
83  // Permissions
84  $this->rights = array();
85  $this->rights_class = 'geoipmaxmind';
86  $r = 0;
87  }
88 }
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
modGeoIPMaxmind
Class to describe and enable module Import.
Definition: modGeoIPMaxmind.class.php:32
modGeoIPMaxmind\__construct
__construct($db)
Constructor.
Definition: modGeoIPMaxmind.class.php:40
name
$conf db name
Definition: repair.php:122
DolibarrModules
Class DolibarrModules.
Definition: DolibarrModules.class.php:37