160 lines
7.6 KiB
PHP
160 lines
7.6 KiB
PHP
<?php
|
|
/* Copyright (C) 2004-2018 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2018-2019 Nicolas ZABOURI <info@inovea-conseil.com>
|
|
* Copyright (C) 2019-2020 Frédéric France <frederic.france@netlogic.fr>
|
|
* Copyright (C) 2025 SuperAdmin
|
|
*
|
|
* 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
|
|
* (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, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \defgroup swissqr Module Swissqr
|
|
* \brief Swissqr module descriptor.
|
|
*
|
|
* \file htdocs/swissqr/core/modules/modSwissqr.class.php
|
|
* \ingroup swissqr
|
|
* \brief Description and activation file for module Swissqr
|
|
*/
|
|
include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
|
|
|
|
/**
|
|
* Description and activation class for module Swissqr
|
|
*/
|
|
class modSwissqr extends DolibarrModules
|
|
{
|
|
/**
|
|
* Constructor. Define names, constants, directories, boxes, permissions
|
|
*
|
|
* @param DoliDB $db Database handler
|
|
*/
|
|
public function __construct($db)
|
|
{
|
|
global $langs, $conf;
|
|
$this->db = $db;
|
|
|
|
$conf->global->INVOICE_ADD_SWISS_QR_CODE = 'bottom';
|
|
error_log(print_r($conf->global->INVOICE_ADD_SWISS_QR_CODE), 0);
|
|
|
|
// 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 = 185101; // TODO Go on page https://wiki.dolibarr.org/index.php/List_of_modules_id to reserve an id number for your module
|
|
|
|
// Key text used to identify module (for permissions, menus, etc...)
|
|
$this->rights_class = 'swissqr';
|
|
|
|
// Family can be 'base' (core modules),'crm','financial','hr','projects','products','ecm','technic' (transverse modules),'interface' (link with external tools),'other','...'
|
|
// It is used to group modules by family in module setup page
|
|
$this->family = "financial";
|
|
|
|
// Module position in the family on 2 digits ('01', '10', '20', ...)
|
|
$this->module_position = '90';
|
|
|
|
// Gives the possibility for the module, to provide his own family info and position of this family (Overwrite $this->family and $this->module_position. Avoid this)
|
|
//$this->familyinfo = array('myownfamily' => array('position' => '01', 'label' => $langs->trans("MyOwnFamily")));
|
|
// Module label (no space allowed), used if translation string 'ModuleSwissqrName' not found (Swissqr is name of module).
|
|
$this->name = preg_replace('/^mod/i', '', get_class($this));
|
|
|
|
// Module description, used if translation string 'ModuleSwissqrDesc' not found (Swissqr is name of module).
|
|
$this->description = "SwissqrDescription";
|
|
// Used only if file README.md and README-LL.md not found.
|
|
$this->descriptionlong = "SwissqrDescription";
|
|
|
|
// Author
|
|
$this->editor_name = 'Sinabe Sàrl';
|
|
$this->editor_url = 'https://sinabe.ch';
|
|
|
|
// Possible values for version are: 'development', 'experimental', 'dolibarr', 'dolibarr_deprecated', 'experimental_deprecated' or a version string like 'x.y.z'
|
|
$this->version = '2.0.0';
|
|
// Url to the file with your last numberversion of this module
|
|
//$this->url_last_version = 'http://www.example.com/versionmodule.txt';
|
|
|
|
// Key used in llx_const table to save module status enabled/disabled (where SWISSQR is value of property name of module in uppercase)
|
|
$this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
|
|
|
|
// Name of image file used for this module.
|
|
// If file is in theme/yourtheme/img directory under name object_pictovalue.png, use this->picto='pictovalue'
|
|
// If file is in module/img directory under name object_pictovalue.png, use this->picto='pictovalue@module'
|
|
// To use a supported fa-xxx css style of font awesome, use this->picto='xxx'
|
|
$this->picto = 'fa-file-o';
|
|
|
|
// Define some features supported by module (triggers, login, substitutions, menus, css, etc...)
|
|
$this->module_parts = array(
|
|
// Set this to 1 if module has its own trigger directory (core/triggers)
|
|
'triggers' => 0,
|
|
// Set this to 1 if module has its own login method file (core/login)
|
|
'login' => 0,
|
|
// Set this to 1 if module has its own substitution function file (core/substitutions)
|
|
'substitutions' => 0,
|
|
// Set this to 1 if module has its own menus handler directory (core/menus)
|
|
'menus' => 0,
|
|
// Set this to 1 if module overwrite template dir (core/tpl)
|
|
'tpl' => 0,
|
|
// Set this to 1 if module has its own barcode directory (core/modules/barcode)
|
|
'barcode' => 0,
|
|
// Set this to 1 if module has its own models directory (core/modules/xxx)
|
|
'models' => true,
|
|
// Set this to 1 if module has its own printing directory (core/modules/printing)
|
|
'printing' => 0,
|
|
// Set this to 1 if module has its own theme directory (theme)
|
|
'theme' => 0,
|
|
// Set this to relative path of css file if module has its own css file
|
|
'css' => array(
|
|
// '/swissqr/css/swissqr.css.php',
|
|
),
|
|
// Set this to relative path of js file if module must load a js on all pages
|
|
'js' => array(
|
|
// '/swissqr/js/swissqr.js.php',
|
|
),
|
|
// Set here all hooks context managed by module. To find available hook context, make a "grep -r '>initHooks(' *" on source code. You can also set hook context to 'all'
|
|
'hooks' => array(
|
|
),
|
|
// Set this to 1 if features of module are opened to external users
|
|
'moduleforexternal' => 0,
|
|
);
|
|
|
|
// Dependencies
|
|
// A condition to hide module
|
|
$this->hidden = false;
|
|
// List of module class names that must be enabled if this module is enabled. Example: array('always'=>array('modModuleToEnable1','modModuleToEnable2'), 'FR'=>array('modModuleToEnableFR')...)
|
|
$this->depends = array();
|
|
// List of module class names to disable if this one is disabled. Example: array('modModuleToDisable1', ...)
|
|
$this->requiredby = array();
|
|
// List of module class names this module is in conflict with. Example: array('modModuleToDisable1', ...)
|
|
$this->conflictwith = array();
|
|
|
|
// The language file dedicated to your module
|
|
$this->langfiles = array("swissqr@swissqr");
|
|
|
|
// Prerequisites
|
|
$this->phpmin = array(8, 1); // Minimum version of PHP required by module
|
|
$this->need_dolibarr_version = array(18); // Minimum version of Dolibarr required by module
|
|
$this->need_javascript_ajax = 0;
|
|
|
|
// Messages at activation
|
|
$this->warnings_activation = array(); // Warning to show when we activate module. array('always'='text') or array('FR'='textfr','MX'='textmx'...)
|
|
$this->warnings_activation_ext = array(); // Warning to show when we activate an external module. array('always'='text') or array('FR'='textfr','MX'='textmx'...)
|
|
//$this->automatic_activation = array('FR'=>'SwissqrWasAutomaticallyActivatedBecauseOfYourCountryChoice');
|
|
//$this->always_enabled = true; // If true, can't be disabled
|
|
|
|
// Constants
|
|
// List of particular constants to add when module is enabled (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
|
|
// Example: $this->const=array(1 => array('SWISSQR_MYNEWCONST1', 'chaine', 'myvalue', 'This is a constant to add', 1),
|
|
// 2 => array('SWISSQR_MYNEWCONST2', 'chaine', 'myvalue', 'This is another constant to add', 0, 'current', 1)
|
|
// );
|
|
$this->const = array(
|
|
1 => array('INVOICE_ADD_SWISS_QR_CODE', 'chaine', 'bottom', '', 0, 'current', 1)
|
|
);
|
|
// error_log("You messed up!", 0);
|
|
}
|
|
} |