dolibarr/htdocs/core/modules/modComptabilite.class.php

125 lines
3.7 KiB
PHP
Raw Permalink Normal View History

<?php
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2008-02-16 18:50:25 +01:00
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
2003-09-14 12:35:52 +02:00
*
* 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 3 of the License, or
2003-09-14 12:35:52 +02:00
* (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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2003-09-14 12:35:52 +02:00
*/
/**
* \defgroup comptabilite Module Comptabilite
* \brief Module to include accounting functions (account management and reporting)
*
* \file htdocs/core/modules/modComptabilite.class.php
* \ingroup comptabilite
* \brief Description and activation file for the module simple accountancy
*/
include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
2003-09-14 12:35:52 +02:00
/**
2015-09-07 15:55:26 +02:00
* Class to describe and enable module Comptabilite
2011-09-26 16:22:35 +02:00
*/
2003-11-13 16:09:12 +01:00
class modComptabilite extends DolibarrModules
2003-09-14 12:35:52 +02:00
{
/**
* Constructor. Define names, constants, directories, boxes, permissions
*
* @param DoliDB $db Database handler
*/
2019-02-25 20:35:59 +01:00
public function __construct($db)
{
global $conf;
2012-01-04 21:23:50 +01:00
$this->db = $db;
$this->numero = 10;
$this->family = "financial";
$this->module_position = '60';
2008-10-01 21:10:17 +02:00
// 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));
2008-10-01 21:10:17 +02:00
$this->description = "Gestion sommaire de comptabilite";
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this->version = 'dolibarr';
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
2021-04-30 15:22:17 +02:00
$this->picto = 'accountancy';
// Config pages
$this->config_page_url = array("compta.php");
2015-09-07 15:29:51 +02:00
// Dependencies
$this->depends = array("modFacture", "modBanque");
$this->requiredby = array();
$this->conflictwith = array("modAccounting");
$this->langfiles = array("compta");
2015-09-07 15:40:55 +02:00
// Constants
$this->const = array();
// Data directories to create when module is enabled
$this->dirs = array(
"/comptabilite/temp",
"/comptabilite/rapport",
"/comptabilite/export",
"/comptabilite/bordereau"
);
2015-09-07 15:46:57 +02:00
// Boxes
$this->boxes = array();
// Permissions
$this->rights = array();
$this->rights_class = 'compta';
$r = 0;
$r++;
$this->rights[$r][0] = 95;
2008-10-28 21:37:30 +01:00
$this->rights[$r][1] = 'Lire CA, bilans, resultats';
$this->rights[$r][2] = 'r';
$this->rights[$r][3] = 0;
$this->rights[$r][4] = 'resultat';
$this->rights[$r][5] = 'lire';
// Menus
//-------
$this->menu = 1; // This module add menu entries. They are coded into menu manager.
}
/**
* Function called when module is enabled.
2019-02-26 21:13:07 +01:00
* The init function add constants, boxes, permissions and menus (defined in constructor) into Dolibarr database.
* It also creates data directories
2012-01-04 21:23:50 +01:00
*
* @param string $options Options when enabling module ('', 'noboxes')
* @return int 1 if OK, 0 if KO
*/
public function init($options = '')
{
global $conf;
// Nettoyage avant activation
$this->remove($options);
2011-12-05 19:03:36 +01:00
$sql = array();
2012-01-04 21:23:50 +01:00
return $this->_init($sql, $options);
}
2003-09-14 12:35:52 +02:00
}