mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
191 lines
7.4 KiB
PHP
191 lines
7.4 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
|
|
class PBXManager extends CRMEntity {
|
|
var $db, $log; // Used in class functions like CRMEntity
|
|
|
|
var $table_name;
|
|
var $table_index= 'pbxmanagerid';
|
|
var $column_fields = Array();
|
|
|
|
// Mandatory for function getGroupName
|
|
// Array(groupTableName, groupColumnId)
|
|
// groupTableName should have (groupname column)
|
|
//var $groupTable = Array('vte_pbxmanagergrouprel','pbxmanagerid');
|
|
|
|
// Mandatory table for supporting custom fields
|
|
var $customFieldTable = Array();
|
|
|
|
// Mandatory for Saving, Include tables related to this module.
|
|
var $tab_name = Array();
|
|
// Mandatory for Saving, Include the table name and index column mapping here.
|
|
var $tab_name_index = Array();
|
|
|
|
// Mandatory for Listing
|
|
var $list_fields = Array (
|
|
// Field Label=> Array(tablename, columnname)
|
|
'Call To'=> Array('pbxmanager', 'callto'),
|
|
'Call From'=>Array('pbxmanager', 'callfrom'),
|
|
);
|
|
var $list_fields_name = Array(
|
|
// Field Label=>columnname
|
|
'Call To'=> 'callto',
|
|
'Call From' => 'callfrom'
|
|
);
|
|
var $sortby_fields = Array('callto', 'callfrom', 'callid', 'timeofcall', 'status');
|
|
// Should contain field labels
|
|
var $detailview_links = Array();
|
|
|
|
// For alphabetical search
|
|
var $def_basicsearch_col = 'callid';
|
|
|
|
// Column value to use on detail view record text display.
|
|
var $def_detailview_recname = '';
|
|
|
|
// Required information for enabling Import feature
|
|
var $required_fields = Array();
|
|
|
|
// Callback function list during Importing
|
|
var $special_functions = array();
|
|
|
|
var $default_order_by = 'timeofcall';
|
|
var $default_sort_order='DESC';
|
|
|
|
function __construct() {
|
|
global $log;
|
|
global $table_prefix;
|
|
parent::__construct(); // crmv@37004
|
|
$this->table_name = $table_prefix.'_pbxmanager';
|
|
$this->tab_name = Array($table_prefix.'_crmentity', $table_prefix.'_pbxmanager');
|
|
$this->tab_name_index = Array(
|
|
$table_prefix.'_crmentity' => 'crmid',
|
|
$table_prefix.'_pbxmanager' => 'pbxmanagerid',
|
|
);
|
|
|
|
$this->column_fields = getColumnFields('PBXManager');
|
|
$this->db = PearDatabase::getInstance();
|
|
$this->log = $log;
|
|
}
|
|
|
|
function save_module($module) {
|
|
}
|
|
|
|
/**
|
|
* Get list view query.
|
|
*/
|
|
function getListQuery($module, $where='') { // crmv@146653
|
|
global $table_prefix;
|
|
$query = "SELECT $this->table_name.*, ".$table_prefix."_crmentity.*";
|
|
$query .= " FROM $this->table_name";
|
|
|
|
$query .= " INNER JOIN ".$table_prefix."_crmentity
|
|
ON ".$table_prefix."_crmentity.crmid = $this->table_name.$this->table_index
|
|
LEFT JOIN ".$table_prefix."_groups
|
|
ON ".$table_prefix."_groups.groupid = ".$table_prefix."_crmentity.smownerid";
|
|
|
|
// Consider custom table join as well.
|
|
if(!empty($this->customFieldTable)) {
|
|
$query .= " INNER JOIN ".$this->customFieldTable[0]." ON ".$this->customFieldTable[0].'.'.$this->customFieldTable[1] .
|
|
" = $this->table_name.$this->table_index";
|
|
}
|
|
$query .= " LEFT JOIN ".$table_prefix."_users ON ".$table_prefix."_users.id = ".$table_prefix."_crmentity.smownerid ";
|
|
global $current_user;
|
|
//crmv@31775
|
|
$reportFilterJoin = '';
|
|
$viewId = getLVS($module,'viewname');
|
|
if (isset($_REQUEST['viewname']) && $_REQUEST['viewname'] != '') {
|
|
$viewId = $_REQUEST['viewname'];
|
|
}
|
|
if ($viewId != '') {
|
|
$oCustomView = CRMEntity::getInstance('CustomView', $module); // crmv@115329
|
|
$reportFilter = $oCustomView->getReportFilter($viewId);
|
|
if ($reportFilter) {
|
|
$tableNameTmp = $oCustomView->getReportFilterTableName($reportFilter,$current_user->id);
|
|
$query .= " INNER JOIN $tableNameTmp ON $tableNameTmp.id = {$table_prefix}_crmentity.crmid";
|
|
}
|
|
}
|
|
//crmv@31775e
|
|
$query .= $this->getNonAdminAccessControlQuery($module,$current_user);
|
|
$query .= "WHERE ".$table_prefix."_crmentity.deleted = 0 ".$where;
|
|
$query = $this->listQueryNonAdminChange($query, $module);
|
|
return $query;
|
|
}
|
|
|
|
/**
|
|
* Handle getting related list information.
|
|
* NOTE: This function has been added to CRMEntity (base class).
|
|
* You can override the behavior by re-defining it here.
|
|
*/
|
|
//function get_related_list($id, $cur_tab_id, $rel_tab_id, $actions=false) { }
|
|
|
|
/**
|
|
* Handle saving related module information.
|
|
* NOTE: This function has been added to CRMEntity (base class).
|
|
* You can override the behavior by re-defining it here.
|
|
*/
|
|
// function save_related_module($module, $crmid, $with_module, $with_crmid) { }
|
|
|
|
/**
|
|
* Invoked when special actions are performed on the module.
|
|
* @param String Module name
|
|
* @param String Event Type
|
|
*/
|
|
function vtlib_handler($moduleName, $eventType) {
|
|
require_once('include/utils/utils.php');
|
|
global $adb;
|
|
global $table_prefix;
|
|
$tabid = getTabid("Users");
|
|
if($eventType == 'module.postinstall') {
|
|
// Add a block and 2 fields for Users module
|
|
// crmv@104975
|
|
$usersInstance = Vtecrm_Module::getInstance('Users');
|
|
$panelInstance = Vtecrm_Panel::getFirstForModule($usersInstance);
|
|
$panelid = $panelInstance ? $panelInstance->id : 0;
|
|
$blockid = $adb->getUniqueID($table_prefix.'_blocks');
|
|
$adb->query("insert into ".$table_prefix."_blocks(blockid,tabid,panelid,blocklabel,sequence,show_title,visible,create_view,edit_view,detail_view,display_status)" .
|
|
" values ($blockid,$tabid,$panelid,'Asterisk Configuration',7,0,0,0,0,0,1)"); //crmv@20047
|
|
// crmv@104975e
|
|
$adb->query("insert into ".$table_prefix."_field(tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly," .
|
|
" presence,selected,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type) " .
|
|
" values ($tabid,".$adb->getUniqueID($table_prefix.'_field').",'asterisk_extension','".$table_prefix."_asteriskextensions',1,1,'asterisk_extension'," .
|
|
" 'Asterisk Extension',1,0,0,30,1,$blockid,1,'V~O',1,NULL,'BAS')");
|
|
|
|
$adb->query("insert into ".$table_prefix."_field(tabid,fieldid,columnname,tablename,generatedtype,uitype,fieldname,fieldlabel,readonly," .
|
|
" presence,selected,maximumlength,sequence,block,displaytype,typeofdata,quickcreate,quickcreatesequence,info_type) " .
|
|
" values ($tabid,".$adb->getUniqueID($table_prefix.'_field').",'use_asterisk','".$table_prefix."_asteriskextensions',1,56,'use_asterisk'," .
|
|
"' Receive Incoming Calls',1,0,0,30,2,$blockid,1,'C~O',1,NULL,'BAS')");
|
|
|
|
// Mark the module as Standard module
|
|
$adb->pquery('UPDATE '.$table_prefix.'_tab SET customized=0 WHERE name=?', array($moduleName));
|
|
|
|
// crmv@38798
|
|
$moduleInstance = Vtecrm_Module::getInstance($moduleName);
|
|
$moduleInstance->hide(array('hide_report'=>1));
|
|
// crmv@38798e
|
|
|
|
} else if($eventType == 'module.disabled') {
|
|
// TODO Handle actions when this module is disabled.
|
|
} else if($eventType == 'module.enabled') {
|
|
// TODO Handle actions when this module is enabled.
|
|
} else if($eventType == 'module.preuninstall') {
|
|
// TODO Handle actions when this module is about to be deleted.
|
|
} else if($eventType == 'module.preupdate') {
|
|
// TODO Handle actions before this module is updated.
|
|
} else if($eventType == 'module.postupdate') {
|
|
$tmp_dir = 'packages/vte/mandatory/tmp1';
|
|
mkdir($tmp_dir);
|
|
$unzip = new Vtecrm_Unzip("packages/vte/mandatory/$moduleName.zip");
|
|
$unzip->unzipAllEx($tmp_dir);
|
|
if($unzip) $unzip->close();
|
|
copy("$tmp_dir/cron/AsteriskClient.php","cron/modules/$moduleName/AsteriskClient.php");
|
|
if ($handle = opendir($tmp_dir)) {
|
|
FSUtils::deleteFolder($tmp_dir);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
?>
|