mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 09:38:23 +01:00
146 lines
5.4 KiB
PHP
146 lines
5.4 KiB
PHP
<?php
|
|
/* Copyright (C) 2009-2010 Regis Houssin <regis@dolibarr.fr>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/** \defgroup multicompany Module multicompany
|
|
* \brief Descriptor file for module multicompany
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/includes/modules/modMultiCompany.class.php
|
|
* \ingroup multicompany
|
|
* \brief Description and activation file for module MultiCompany
|
|
* \version $Id$
|
|
*/
|
|
include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php");
|
|
|
|
|
|
/** \class modMultiCompany
|
|
* \brief Description and activation class for module MultiCompany
|
|
*/
|
|
class modMultiCompany extends DolibarrModules
|
|
{
|
|
/**
|
|
* \brief Constructor. Define names, constants, directories, boxes, permissions
|
|
* \param DB Database handler
|
|
*/
|
|
function modMultiCompany($DB)
|
|
{
|
|
$this->db = $DB;
|
|
|
|
// Id for module (must be unique).
|
|
// Use here a free id (See in Home -> System information -> Dolibarr for list of used modules id).
|
|
$this->numero = 5000;
|
|
// Key text used to identify module (for permissions, menus, etc...)
|
|
$this->rights_class = 'multicompany';
|
|
|
|
// Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
|
|
// It is used to group modules in module setup page
|
|
$this->family = "base";
|
|
// Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
|
|
$this->name = preg_replace('/^mod/i','',get_class($this));
|
|
// Module description, used if translation string 'ModuleXXXDesc' not found (where XXX is value of numeric property 'numero' of module)
|
|
$this->description = "Gestion Multi-Societe";
|
|
// Can be enabled / disabled only in the main company with superadmin account
|
|
$this->core_enabled = 1;
|
|
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
|
|
$this->version = 'development';
|
|
// Key used in llx_const table to save module status enabled/disabled (where MYMODULE is value of property name of module in uppercase)
|
|
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
|
|
// Where to store the module in setup page (0=common,1=interface,2=others,3=very specific)
|
|
$this->special = 0;
|
|
// Name of png file (without png) used for this module.
|
|
// Png file must be in theme/yourtheme/img directory under name object_pictovalue.png.
|
|
$this->picto='globe';
|
|
|
|
// Data directories to create when module is enabled.
|
|
$this->dirs = array();
|
|
|
|
// Relative path to module style sheet if exists. Example: '/mymodule/mycss.css'.
|
|
$this->style_sheet = '';
|
|
|
|
// Config pages. Put here list of php page names stored in admmin directory used to setup module.
|
|
$this->config_page_url = array("multicompany.php@multicompany");
|
|
|
|
// Dependencies
|
|
$this->depends = array(); // List of modules id that must be enabled if this module is enabled
|
|
$this->requiredby = array(); // List of modules id to disable if this one is disabled
|
|
$this->phpmin = array(4,3); // Minimum version of PHP required by module
|
|
$this->need_dolibarr_version = array(2,9); // Minimum version of Dolibarr required by module
|
|
$this->langfiles = array("multicompany");
|
|
|
|
// Constants
|
|
// List of particular constants to add when module is enabled
|
|
//Example: $this->const=array(0=>array('MODULE_MY_NEW_CONST1','chaine','myvalue','This is a constant to add',0),
|
|
// 1=>array('MODULE_MY_NEW_CONST2','chaine','myvalue','This is another constant to add',0) );
|
|
$this->const=array(1=>array('MAIN_MODULE_MULTICOMPANY_NEEDSMARTY',"chaine",1,'Need smarty',0,'allentities'));
|
|
|
|
// Boxes
|
|
$this->boxes = array(); // List of boxes
|
|
$r=0;
|
|
|
|
// Permissions
|
|
$this->rights = array(); // Permission array used by this module
|
|
$r=0;
|
|
|
|
// Main menu entries
|
|
$this->menus = array(); // List of menus to add
|
|
$r=0;
|
|
|
|
}
|
|
|
|
/**
|
|
* \brief Function called when module is enabled.
|
|
* The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
|
|
* It also creates data directories.
|
|
* \return int 1 if OK, 0 if KO
|
|
*/
|
|
function init()
|
|
{
|
|
$sql = array();
|
|
|
|
return $this->_init($sql);
|
|
}
|
|
|
|
/**
|
|
* \brief Function called when module is disabled.
|
|
* Remove from database constants, boxes and permissions from Dolibarr database.
|
|
* Data directories are not deleted.
|
|
* \return int 1 if OK, 0 if KO
|
|
*/
|
|
function remove()
|
|
{
|
|
$sql = array();
|
|
|
|
$result = $this->destroy_cookie();
|
|
|
|
return $this->_remove($sql);
|
|
}
|
|
|
|
|
|
/**
|
|
* \brief Destroy a cookie
|
|
*/
|
|
function destroy_cookie()
|
|
{
|
|
// Destroy entity cookie
|
|
$entityCookieName = "DOLENTITYID_".md5($_SERVER["SERVER_NAME"].$_SERVER["DOCUMENT_ROOT"]);
|
|
setcookie($entityCookieName, '', 1, "/");
|
|
}
|
|
}
|
|
|
|
?>
|