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

90 lines
3.2 KiB
PHP
Raw Normal View History

2013-11-04 21:41:36 +01:00
<?php
2015-07-15 20:30:33 +02:00
/* Copyright (C) 2013 Alexandre Spangaro <aspangaro.dolibarr@gmail.com>
2013-11-04 21:41:36 +01: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
* (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 <http://www.gnu.org/licenses/>.
*/
/**
2014-01-15 18:20:24 +01:00
* \defgroup Skype Module skype
2013-11-04 21:41:36 +01:00
* \brief Add a skype button.
* \file htdocs/core/modules/modSkype.class.php
* \ingroup Skype
2014-01-15 18:20:24 +01:00
* \brief Description and activation file for module skype
2013-11-04 21:41:36 +01:00
*/
include_once DOL_DOCUMENT_ROOT .'/core/modules/DolibarrModules.class.php';
/**
* Class to describe a Cron module
*/
class modSkype extends DolibarrModules
{
/**
* Constructor. Define names, constants, directories, boxes, permissions
*
* @param DoliDB $db Database handler
*/
function __construct($db)
{
global $langs,$conf;
$this->db = $db;
$this->numero = 3100;
2015-11-25 20:19:18 +01:00
// Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
// It is used to group modules in module setup page
$this->family = "interface";
2013-11-04 21:41:36 +01: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));
$this->description = "Enable Skype links into contacts";
2017-08-22 18:34:58 +02:00
// Possible values for version are: 'development', 'experimental', 'dolibarr' or version
$this->version = 'dolibarr';
2013-11-04 21:41:36 +01:00
// 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);
// Name of image file used for this module.
$this->picto='skype';
// Data directories to create when module is enabled
$this->dirs = array();
// Config pages
//-------------
$this->config_page_url = array();
2013-11-04 21:41:36 +01:00
// Dependancies
//-------------
$this->hidden = ! empty($conf->global->MODULE_SKYPE_DISABLED); // A condition to disable module
2013-11-05 14:39:25 +01:00
$this->depends = array('modSociete'); // List of modules id that must be enabled if this module is enabled
2013-11-04 21:41:36 +01:00
$this->requiredby = array(); // List of modules id to disable if this one is disabled
2013-11-05 14:39:25 +01:00
$this->conflictwith = array(); // List of modules id this module is in conflict with
2013-11-04 21:41:36 +01:00
$this->langfiles = array();
2015-09-07 15:40:55 +02:00
// Constants
2013-11-04 21:41:36 +01:00
//-----------
// New pages on tabs
// -----------------
$this->tabs = array();
// Boxes
//------
$this->boxes = array();
// Main menu entries
//------------------
$this->menu = array();
}
}