dolibarr 18.0.6
modClickToDial.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005-2008 Laurent Destailleur <eldy@users.sourceforge.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <https://www.gnu.org/licenses/>.
17 */
18
27include_once DOL_DOCUMENT_ROOT.'/core/modules/DolibarrModules.class.php';
28
29
34{
35
41 public function __construct($db)
42 {
43 $this->db = $db;
44 $this->numero = 58;
45
46 $this->family = "interface";
47 // Module label (no space allowed), used if translation string 'ModuleXXXName' not found (where XXX is value of numeric property 'numero' of module)
48 $this->name = preg_replace('/^mod/i', '', get_class($this));
49 $this->description = "Integration of a ClickToDial system (Asterisk, ...)";
50 $this->descriptionlong = "Support a Click To Dial feature with a SIP system. When clicking on a phone number, your phone system automatically call the callee.";
51
52 $this->version = 'dolibarr'; // 'development' or 'experimental' or 'dolibarr' or version
53
54 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
55 $this->picto = 'phoning';
56
57 // Data directories to create when module is enabled
58 $this->dirs = array();
59
60 // Dependencies
61 $this->depends = array();
62 $this->requiredby = array();
63
64 // Config pages
65 $this->config_page_url = array("clicktodial.php");
66
67 // Constants
68 $this->const = array();
69
70 // Boxes
71 $this->boxes = array();
72
73 // Permissions
74 $this->rights = array();
75 $this->rights_class = 'clicktodial';
76 }
77}
Class DolibarrModules.
Class to describe and enable module Click to Dial.
__construct($db)
Constructor.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:123