vtlib 文件夹,中间存储了 vTiger 的开发库。
This commit is contained in:
parent
9c46e0e18c
commit
a0592c372b
|
@ -0,0 +1,8 @@
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
|
@ -0,0 +1,457 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('data/CRMEntity.php');
|
||||||
|
require_once('data/Tracker.php');
|
||||||
|
|
||||||
|
class ModuleClass extends CRMEntity {
|
||||||
|
var $db, $log; // Used in class functions of CRMEntity
|
||||||
|
|
||||||
|
var $table_name = 'vtiger_payslip';
|
||||||
|
var $table_index= 'payslipid';
|
||||||
|
var $column_fields = Array();
|
||||||
|
|
||||||
|
/** Indicator if this is a custom module or standard module */
|
||||||
|
var $IsCustomModule = true;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mandatory table for supporting custom fields.
|
||||||
|
*/
|
||||||
|
var $customFieldTable = Array('vtiger_payslipcf', 'payslipid');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mandatory for Saving, Include tables related to this module.
|
||||||
|
*/
|
||||||
|
var $tab_name = Array('vtiger_crmentity', 'vtiger_payslip', 'vtiger_payslipcf');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mandatory for Saving, Include tablename and tablekey columnname here.
|
||||||
|
*/
|
||||||
|
var $tab_name_index = Array(
|
||||||
|
'vtiger_crmentity' => 'crmid',
|
||||||
|
'vtiger_payslip' => 'payslipid',
|
||||||
|
'vtiger_payslipcf' => 'payslipid');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Mandatory for Listing (Related listview)
|
||||||
|
*/
|
||||||
|
var $list_fields = Array (
|
||||||
|
/* Format: Field Label => Array(tablename, columnname) */
|
||||||
|
// tablename should not have prefix 'vtiger_'
|
||||||
|
'Payslip Name'=> Array('payslip', 'payslipname'),
|
||||||
|
'Assigned To' => Array('crmentity','smownerid')
|
||||||
|
);
|
||||||
|
var $list_fields_name = Array(
|
||||||
|
/* Format: Field Label => fieldname */
|
||||||
|
'Payslip Name'=> 'payslipname',
|
||||||
|
'Assigned To' => 'assigned_user_id'
|
||||||
|
);
|
||||||
|
|
||||||
|
// Make the field link to detail view from list view (Fieldname)
|
||||||
|
var $list_link_field = 'payslipname';
|
||||||
|
|
||||||
|
// For Popup listview and UI type support
|
||||||
|
var $search_fields = Array(
|
||||||
|
/* Format: Field Label => Array(tablename, columnname) */
|
||||||
|
// tablename should not have prefix 'vtiger_'
|
||||||
|
'Payslip Name'=> Array('payslip', 'payslipname')
|
||||||
|
);
|
||||||
|
var $search_fields_name = Array(
|
||||||
|
/* Format: Field Label => fieldname */
|
||||||
|
'Payslip Name'=> 'payslipname'
|
||||||
|
);
|
||||||
|
|
||||||
|
// For Popup window record selection
|
||||||
|
var $popup_fields = Array('payslipname');
|
||||||
|
|
||||||
|
// Placeholder for sort fields - All the fields will be initialized for Sorting through initSortFields
|
||||||
|
var $sortby_fields = Array();
|
||||||
|
|
||||||
|
// For Alphabetical search
|
||||||
|
var $def_basicsearch_col = 'payslipname';
|
||||||
|
|
||||||
|
// Column value to use on detail view record text display
|
||||||
|
var $def_detailview_recname = 'payslipname';
|
||||||
|
|
||||||
|
// Required Information for enabling Import feature
|
||||||
|
var $required_fields = Array('payslipname'=>1);
|
||||||
|
|
||||||
|
// Callback function list during Importing
|
||||||
|
var $special_functions = Array('set_import_assigned_user');
|
||||||
|
|
||||||
|
var $default_order_by = 'payslipname';
|
||||||
|
var $default_sort_order='ASC';
|
||||||
|
// Used when enabling/disabling the mandatory fields for the module.
|
||||||
|
// Refers to vtiger_field.fieldname values.
|
||||||
|
var $mandatory_fields = Array('createdtime', 'modifiedtime', 'payslipname');
|
||||||
|
|
||||||
|
function __construct() {
|
||||||
|
global $log, $currentModule;
|
||||||
|
$this->column_fields = getColumnFields($currentModule);
|
||||||
|
$this->db = PearDatabase::getInstance();
|
||||||
|
$this->log = $log;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSortOrder() {
|
||||||
|
global $currentModule;
|
||||||
|
|
||||||
|
$sortorder = $this->default_sort_order;
|
||||||
|
if($_REQUEST['sorder']) $sortorder = $this->db->sql_escape_string($_REQUEST['sorder']);
|
||||||
|
else if($_SESSION[$currentModule.'_Sort_Order'])
|
||||||
|
$sortorder = $_SESSION[$currentModule.'_Sort_Order'];
|
||||||
|
|
||||||
|
return $sortorder;
|
||||||
|
}
|
||||||
|
|
||||||
|
function getOrderBy() {
|
||||||
|
global $currentModule;
|
||||||
|
|
||||||
|
$use_default_order_by = '';
|
||||||
|
if(PerformancePrefs::getBoolean('LISTVIEW_DEFAULT_SORTING', true)) {
|
||||||
|
$use_default_order_by = $this->default_order_by;
|
||||||
|
}
|
||||||
|
|
||||||
|
$orderby = $use_default_order_by;
|
||||||
|
if($_REQUEST['order_by']) $orderby = $this->db->sql_escape_string($_REQUEST['order_by']);
|
||||||
|
else if($_SESSION[$currentModule.'_Order_By'])
|
||||||
|
$orderby = $_SESSION[$currentModule.'_Order_By'];
|
||||||
|
return $orderby;
|
||||||
|
}
|
||||||
|
|
||||||
|
function save_module($module) {
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return query to use based on given modulename, fieldname
|
||||||
|
* Useful to handle specific case handling for Popup
|
||||||
|
*/
|
||||||
|
function getQueryByModuleField($module, $fieldname, $srcrecord, $query='') {
|
||||||
|
// $srcrecord could be empty
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get list view query (send more WHERE clause condition if required)
|
||||||
|
*/
|
||||||
|
function getListQuery($module, $usewhere='') {
|
||||||
|
$query = "SELECT vtiger_crmentity.*, $this->table_name.*";
|
||||||
|
|
||||||
|
// Keep track of tables joined to avoid duplicates
|
||||||
|
$joinedTables = array();
|
||||||
|
|
||||||
|
// Select Custom Field Table Columns if present
|
||||||
|
if(!empty($this->customFieldTable)) $query .= ", " . $this->customFieldTable[0] . ".* ";
|
||||||
|
|
||||||
|
$query .= " FROM $this->table_name";
|
||||||
|
|
||||||
|
$query .= " INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = $this->table_name.$this->table_index";
|
||||||
|
|
||||||
|
$joinedTables[] = $this->table_name;
|
||||||
|
$joinedTables[] = 'vtiger_crmentity';
|
||||||
|
|
||||||
|
// 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";
|
||||||
|
$joinedTables[] = $this->customFieldTable[0];
|
||||||
|
}
|
||||||
|
$query .= " LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid";
|
||||||
|
$query .= " LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid";
|
||||||
|
|
||||||
|
$joinedTables[] = 'vtiger_users';
|
||||||
|
$joinedTables[] = 'vtiger_groups';
|
||||||
|
|
||||||
|
$linkedModulesQuery = $this->db->pquery("SELECT distinct fieldname, columnname, relmodule FROM vtiger_field" .
|
||||||
|
" INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid" .
|
||||||
|
" WHERE uitype='10' AND vtiger_fieldmodulerel.module=?", array($module));
|
||||||
|
$linkedFieldsCount = $this->db->num_rows($linkedModulesQuery);
|
||||||
|
|
||||||
|
for($i=0; $i<$linkedFieldsCount; $i++) {
|
||||||
|
$related_module = $this->db->query_result($linkedModulesQuery, $i, 'relmodule');
|
||||||
|
$fieldname = $this->db->query_result($linkedModulesQuery, $i, 'fieldname');
|
||||||
|
$columnname = $this->db->query_result($linkedModulesQuery, $i, 'columnname');
|
||||||
|
|
||||||
|
$other = CRMEntity::getInstance($related_module);
|
||||||
|
vtlib_setup_modulevars($related_module, $other);
|
||||||
|
|
||||||
|
if(!in_array($other->table_name, $joinedTables)) {
|
||||||
|
$query .= " LEFT JOIN $other->table_name ON $other->table_name.$other->table_index = $this->table_name.$columnname";
|
||||||
|
$joinedTables[] = $other->table_name;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
global $current_user;
|
||||||
|
$query .= $this->getNonAdminAccessControlQuery($module,$current_user);
|
||||||
|
$query .= " WHERE vtiger_crmentity.deleted = 0 ".$usewhere;
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Apply security restriction (sharing privilege) query part for List view.
|
||||||
|
*/
|
||||||
|
function getListViewSecurityParameter($module) {
|
||||||
|
global $current_user;
|
||||||
|
require('user_privileges/user_privileges_'.$current_user->id.'.php');
|
||||||
|
require('user_privileges/sharing_privileges_'.$current_user->id.'.php');
|
||||||
|
|
||||||
|
$sec_query = '';
|
||||||
|
$tabid = getTabid($module);
|
||||||
|
|
||||||
|
if($is_admin==false && $profileGlobalPermission[1] == 1 && $profileGlobalPermission[2] == 1
|
||||||
|
&& $defaultOrgSharingPermission[$tabid] == 3) {
|
||||||
|
|
||||||
|
$sec_query .= " AND (vtiger_crmentity.smownerid in($current_user->id) OR vtiger_crmentity.smownerid IN
|
||||||
|
(
|
||||||
|
SELECT vtiger_user2role.userid FROM vtiger_user2role
|
||||||
|
INNER JOIN vtiger_users ON vtiger_users.id=vtiger_user2role.userid
|
||||||
|
INNER JOIN vtiger_role ON vtiger_role.roleid=vtiger_user2role.roleid
|
||||||
|
WHERE vtiger_role.parentrole LIKE '".$current_user_parent_role_seq."::%'
|
||||||
|
)
|
||||||
|
OR vtiger_crmentity.smownerid IN
|
||||||
|
(
|
||||||
|
SELECT shareduserid FROM vtiger_tmp_read_user_sharing_per
|
||||||
|
WHERE userid=".$current_user->id." AND tabid=".$tabid."
|
||||||
|
)
|
||||||
|
OR
|
||||||
|
(";
|
||||||
|
|
||||||
|
// Build the query based on the group association of current user.
|
||||||
|
if(sizeof($current_user_groups) > 0) {
|
||||||
|
$sec_query .= " vtiger_groups.groupid IN (". implode(",", $current_user_groups) .") OR ";
|
||||||
|
}
|
||||||
|
$sec_query .= " vtiger_groups.groupid IN
|
||||||
|
(
|
||||||
|
SELECT vtiger_tmp_read_group_sharing_per.sharedgroupid
|
||||||
|
FROM vtiger_tmp_read_group_sharing_per
|
||||||
|
WHERE userid=".$current_user->id." and tabid=".$tabid."
|
||||||
|
)";
|
||||||
|
$sec_query .= ")
|
||||||
|
)";
|
||||||
|
}
|
||||||
|
return $sec_query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create query to export the records.
|
||||||
|
*/
|
||||||
|
function create_export_query($where)
|
||||||
|
{
|
||||||
|
global $current_user;
|
||||||
|
$thismodule = $_REQUEST['module'];
|
||||||
|
|
||||||
|
include("include/utils/ExportUtils.php");
|
||||||
|
|
||||||
|
//To get the Permitted fields query and the permitted fields list
|
||||||
|
$sql = getPermittedFieldsQuery($thismodule, "detail_view");
|
||||||
|
|
||||||
|
$fields_list = getFieldsListFromQuery($sql);
|
||||||
|
|
||||||
|
$query = "SELECT $fields_list, vtiger_users.user_name AS user_name
|
||||||
|
FROM vtiger_crmentity INNER JOIN $this->table_name ON vtiger_crmentity.crmid=$this->table_name.$this->table_index";
|
||||||
|
|
||||||
|
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 vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid";
|
||||||
|
$query .= " LEFT JOIN vtiger_users ON vtiger_crmentity.smownerid = vtiger_users.id and vtiger_users.status='Active'";
|
||||||
|
|
||||||
|
$linkedModulesQuery = $this->db->pquery("SELECT distinct fieldname, columnname, relmodule FROM vtiger_field" .
|
||||||
|
" INNER JOIN vtiger_fieldmodulerel ON vtiger_fieldmodulerel.fieldid = vtiger_field.fieldid" .
|
||||||
|
" WHERE uitype='10' AND vtiger_fieldmodulerel.module=?", array($thismodule));
|
||||||
|
$linkedFieldsCount = $this->db->num_rows($linkedModulesQuery);
|
||||||
|
|
||||||
|
for($i=0; $i<$linkedFieldsCount; $i++) {
|
||||||
|
$related_module = $this->db->query_result($linkedModulesQuery, $i, 'relmodule');
|
||||||
|
$fieldname = $this->db->query_result($linkedModulesQuery, $i, 'fieldname');
|
||||||
|
$columnname = $this->db->query_result($linkedModulesQuery, $i, 'columnname');
|
||||||
|
|
||||||
|
$other = CRMEntity::getInstance($related_module);
|
||||||
|
vtlib_setup_modulevars($related_module, $other);
|
||||||
|
|
||||||
|
$query .= " LEFT JOIN $other->table_name ON $other->table_name.$other->table_index = $this->table_name.$columnname";
|
||||||
|
}
|
||||||
|
|
||||||
|
$query .= $this->getNonAdminAccessControlQuery($thismodule,$current_user);
|
||||||
|
$where_auto = " vtiger_crmentity.deleted=0";
|
||||||
|
|
||||||
|
if($where != '') $query .= " WHERE ($where) AND $where_auto";
|
||||||
|
else $query .= " WHERE $where_auto";
|
||||||
|
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize this instance for importing.
|
||||||
|
*/
|
||||||
|
function initImport($module) {
|
||||||
|
$this->db = PearDatabase::getInstance();
|
||||||
|
$this->initImportableFields($module);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create list query to be shown at the last step of the import.
|
||||||
|
* Called From: modules/Import/UserLastImport.php
|
||||||
|
*/
|
||||||
|
function create_import_query($module) {
|
||||||
|
global $current_user;
|
||||||
|
$query = "SELECT vtiger_crmentity.crmid, case when (vtiger_users.user_name not like '') then vtiger_users.user_name else vtiger_groups.groupname end as user_name, $this->table_name.* FROM $this->table_name
|
||||||
|
INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = $this->table_name.$this->table_index
|
||||||
|
LEFT JOIN vtiger_users_last_import ON vtiger_users_last_import.bean_id=vtiger_crmentity.crmid
|
||||||
|
LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid
|
||||||
|
LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid
|
||||||
|
WHERE vtiger_users_last_import.assigned_user_id='$current_user->id'
|
||||||
|
AND vtiger_users_last_import.bean_type='$module'
|
||||||
|
AND vtiger_users_last_import.deleted=0";
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete the last imported records.
|
||||||
|
*/
|
||||||
|
function undo_import($module, $user_id) {
|
||||||
|
global $adb;
|
||||||
|
$count = 0;
|
||||||
|
$query1 = "select bean_id from vtiger_users_last_import where assigned_user_id=? AND bean_type='$module' AND deleted=0";
|
||||||
|
$result1 = $adb->pquery($query1, array($user_id)) or die("Error getting last import for undo: ".mysql_error());
|
||||||
|
while ( $row1 = $adb->fetchByAssoc($result1))
|
||||||
|
{
|
||||||
|
$query2 = "update vtiger_crmentity set deleted=1 where crmid=?";
|
||||||
|
$result2 = $adb->pquery($query2, array($row1['bean_id'])) or die("Error undoing last import: ".mysql_error());
|
||||||
|
$count++;
|
||||||
|
}
|
||||||
|
return $count;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transform the value while exporting
|
||||||
|
*/
|
||||||
|
function transform_export_value($key, $value) {
|
||||||
|
return parent::transform_export_value($key, $value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function which will set the assigned user id for import record.
|
||||||
|
*/
|
||||||
|
function set_import_assigned_user()
|
||||||
|
{
|
||||||
|
global $current_user, $adb;
|
||||||
|
$record_user = $this->column_fields["assigned_user_id"];
|
||||||
|
|
||||||
|
if($record_user != $current_user->id){
|
||||||
|
$sqlresult = $adb->pquery("select id from vtiger_users where id = ? union select groupid as id from vtiger_groups where groupid = ?", array($record_user, $record_user));
|
||||||
|
if($this->db->num_rows($sqlresult)!= 1) {
|
||||||
|
$this->column_fields["assigned_user_id"] = $current_user->id;
|
||||||
|
} else {
|
||||||
|
$row = $adb->fetchByAssoc($sqlresult, -1, false);
|
||||||
|
if (isset($row['id']) && $row['id'] != -1) {
|
||||||
|
$this->column_fields["assigned_user_id"] = $row['id'];
|
||||||
|
} else {
|
||||||
|
$this->column_fields["assigned_user_id"] = $current_user->id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Function which will give the basic query to find duplicates
|
||||||
|
*/
|
||||||
|
function getDuplicatesQuery($module,$table_cols,$field_values,$ui_type_arr,$select_cols='') {
|
||||||
|
$select_clause = "SELECT ". $this->table_name .".".$this->table_index ." AS recordid, vtiger_users_last_import.deleted,".$table_cols;
|
||||||
|
|
||||||
|
// Select Custom Field Table Columns if present
|
||||||
|
if(isset($this->customFieldTable)) $query .= ", " . $this->customFieldTable[0] . ".* ";
|
||||||
|
|
||||||
|
$from_clause = " FROM $this->table_name";
|
||||||
|
|
||||||
|
$from_clause .= " INNER JOIN vtiger_crmentity ON vtiger_crmentity.crmid = $this->table_name.$this->table_index";
|
||||||
|
|
||||||
|
// Consider custom table join as well.
|
||||||
|
if(isset($this->customFieldTable)) {
|
||||||
|
$from_clause .= " INNER JOIN ".$this->customFieldTable[0]." ON ".$this->customFieldTable[0].'.'.$this->customFieldTable[1] .
|
||||||
|
" = $this->table_name.$this->table_index";
|
||||||
|
}
|
||||||
|
$from_clause .= " LEFT JOIN vtiger_users ON vtiger_users.id = vtiger_crmentity.smownerid
|
||||||
|
LEFT JOIN vtiger_groups ON vtiger_groups.groupid = vtiger_crmentity.smownerid";
|
||||||
|
|
||||||
|
$where_clause = " WHERE vtiger_crmentity.deleted = 0";
|
||||||
|
$where_clause .= $this->getListViewSecurityParameter($module);
|
||||||
|
|
||||||
|
if (isset($select_cols) && trim($select_cols) != '') {
|
||||||
|
$sub_query = "SELECT $select_cols FROM $this->table_name AS t " .
|
||||||
|
" INNER JOIN vtiger_crmentity AS crm ON crm.crmid = t.".$this->table_index;
|
||||||
|
// Consider custom table join as well.
|
||||||
|
if(isset($this->customFieldTable)) {
|
||||||
|
$sub_query .= " LEFT JOIN ".$this->customFieldTable[0]." tcf ON tcf.".$this->customFieldTable[1]." = t.$this->table_index";
|
||||||
|
}
|
||||||
|
$sub_query .= " WHERE crm.deleted=0 GROUP BY $select_cols HAVING COUNT(*)>1";
|
||||||
|
} else {
|
||||||
|
$sub_query = "SELECT $table_cols $from_clause $where_clause GROUP BY $table_cols HAVING COUNT(*)>1";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$query = $select_clause . $from_clause .
|
||||||
|
" LEFT JOIN vtiger_users_last_import ON vtiger_users_last_import.bean_id=" . $this->table_name .".".$this->table_index .
|
||||||
|
" INNER JOIN (" . $sub_query . ") AS temp ON ".get_on_clause($field_values,$ui_type_arr,$module) .
|
||||||
|
$where_clause .
|
||||||
|
" ORDER BY $table_cols,". $this->table_name .".".$this->table_index ." ASC";
|
||||||
|
|
||||||
|
return $query;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Invoked when special actions are performed on the module.
|
||||||
|
* @param String Module name
|
||||||
|
* @param String Event Type (module.postinstall, module.disabled, module.enabled, module.preuninstall)
|
||||||
|
*/
|
||||||
|
function vtlib_handler($modulename, $event_type) {
|
||||||
|
if($event_type == 'module.postinstall') {
|
||||||
|
// TODO Handle post installation actions
|
||||||
|
} else if($event_type == 'module.disabled') {
|
||||||
|
// TODO Handle actions when this module is disabled.
|
||||||
|
} else if($event_type == 'module.enabled') {
|
||||||
|
// TODO Handle actions when this module is enabled.
|
||||||
|
} else if($event_type == 'module.preuninstall') {
|
||||||
|
// TODO Handle actions when this module is about to be deleted.
|
||||||
|
} else if($event_type == 'module.preupdate') {
|
||||||
|
// TODO Handle actions before this module is updated.
|
||||||
|
} else if($event_type == 'module.postupdate') {
|
||||||
|
// TODO Handle actions after this module is updated.
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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) { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle deleting related module information.
|
||||||
|
* NOTE: This function has been added to CRMEntity (base class).
|
||||||
|
* You can override the behavior by re-defining it here.
|
||||||
|
*/
|
||||||
|
//function delete_related_module($module, $crmid, $with_module, $with_crmid) { }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 getting dependents list information.
|
||||||
|
* NOTE: This function has been added to CRMEntity (base class).
|
||||||
|
* You can override the behavior by re-defining it here.
|
||||||
|
*/
|
||||||
|
//function get_dependents_list($id, $cur_tab_id, $rel_tab_id, $actions=false) { }
|
||||||
|
}
|
||||||
|
?>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('include/Ajax/CommonAjax.php');
|
||||||
|
?>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('Popup.php');
|
||||||
|
?>
|
|
@ -0,0 +1,134 @@
|
||||||
|
<?php
|
||||||
|
/*********************************************************************************
|
||||||
|
** The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
*
|
||||||
|
********************************************************************************/
|
||||||
|
require_once('Smarty_setup.php');
|
||||||
|
require_once('database/DatabaseConnection.php');
|
||||||
|
require_once('modules/Users/Users.php');
|
||||||
|
require_once('include/utils/utils.php');
|
||||||
|
|
||||||
|
$module = vtlib_purify($_REQUEST['module']);
|
||||||
|
$focus = CRMEntity::getInstance($module);
|
||||||
|
|
||||||
|
global $mod_strings, $app_strings, $app_list_strings;
|
||||||
|
global $current_language, $currentModule, $theme;
|
||||||
|
global $adb;
|
||||||
|
|
||||||
|
$theme_path="themes/".$theme."/";
|
||||||
|
$image_path=$theme_path."images/";
|
||||||
|
|
||||||
|
$mode = $_REQUEST['mergemode'];
|
||||||
|
|
||||||
|
if($mode == 'mergesave') {
|
||||||
|
|
||||||
|
$return_module=vtlib_purify($_REQUEST['return_module']);
|
||||||
|
$action=vtlib_purify($_REQUEST['action']);
|
||||||
|
$return_action=vtlib_purify($_REQUEST['return_action']);
|
||||||
|
$parenttab=vtlib_purify($_REQUEST['parent']);
|
||||||
|
$merge_id=vtlib_purify($_REQUEST['record']);
|
||||||
|
$recordids=vtlib_purify($_REQUEST['pass_rec']);
|
||||||
|
|
||||||
|
$result = $adb->pquery("SELECT count(*) AS count FROM vtiger_crmentity WHERE crmid=? and deleted=0", array($merge_id));
|
||||||
|
$count = $adb->query_result($result,0,'count');
|
||||||
|
|
||||||
|
if($count > 0)
|
||||||
|
{
|
||||||
|
// First, save the primary record
|
||||||
|
$focus->mode="edit";
|
||||||
|
setObjectValuesFromRequest($focus);
|
||||||
|
$focus->save($module);
|
||||||
|
$rec_values=$focus->column_fields;
|
||||||
|
|
||||||
|
// Remove the id of primary record from the list of records to be deleted.
|
||||||
|
$del_value=explode(",",$recordids,-1);
|
||||||
|
$offset = array_search($merge_id,$del_value);
|
||||||
|
unset($del_value[$offset]);
|
||||||
|
|
||||||
|
// Transfer the related lists of the records to be deleted, to the primary record's related list
|
||||||
|
if(method_exists($focus, 'transferRelatedRecords')){
|
||||||
|
$focus->transferRelatedRecords($module,$del_value,$merge_id);
|
||||||
|
} else {
|
||||||
|
transferRelatedRecords($module,$del_value,$merge_id);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Delete the records by id specified in the list
|
||||||
|
foreach($del_value as $value)
|
||||||
|
{
|
||||||
|
DeleteEntity($_REQUEST['module'],$_REQUEST['return_module'],$focus,$value,"");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
||||||
|
<script>
|
||||||
|
window.self.close();window.opener.location.href=window.opener.location.href;
|
||||||
|
</script>
|
||||||
|
<?php
|
||||||
|
} elseif ($mode == 'mergefields') {
|
||||||
|
|
||||||
|
$idstring=vtlib_purify($_REQUEST['passurl']);
|
||||||
|
$parent_tab=getParentTab();
|
||||||
|
|
||||||
|
$exploded_id=explode(",",$idstring,-1);
|
||||||
|
$record_count = count($exploded_id);
|
||||||
|
|
||||||
|
$smarty = new vtigerCRM_Smarty;
|
||||||
|
$smarty->assign("EDIT_DUPLICATE","");
|
||||||
|
if($record_count == 2) {
|
||||||
|
if(isPermitted($currentModule,"EditView",$exploded_id[0]) == 'yes' && isPermitted($currentModule,"EditView",$exploded_id[1]) == 'yes'
|
||||||
|
&& isPermitted($currentModule,"Delete",$exploded_id[0]) == 'yes' && isPermitted($currentModule,"Delete",$exploded_id[1]) == 'yes')
|
||||||
|
$smarty->assign("EDIT_DUPLICATE","permitted");
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if(isPermitted($currentModule,"EditView",$exploded_id[0]) == 'yes' && isPermitted($currentModule,"EditView",$exploded_id[1]) == 'yes' && isPermitted($currentModule,"EditView",$exploded_id[2]) == 'yes'
|
||||||
|
&& isPermitted($currentModule,"Delete",$exploded_id[0]) == 'yes' && isPermitted($currentModule,"Delete",$exploded_id[1]) == 'yes' && isPermitted($currentModule,"Delete",$exploded_id[2]) == 'yes')
|
||||||
|
$smarty->assign("EDIT_DUPLICATE","permitted");
|
||||||
|
}
|
||||||
|
|
||||||
|
$all_values_array=getRecordValues($exploded_id,$module);
|
||||||
|
$all_values=$all_values_array[0];
|
||||||
|
$js_arr_val=$all_values_array[1];
|
||||||
|
$fld_array=$all_values_array[2];
|
||||||
|
$js_arr=implode(",",$js_arr_val);
|
||||||
|
|
||||||
|
$imported_records = Array();
|
||||||
|
$sql="select bean_id from vtiger_users_last_import where bean_type=? and deleted=0";
|
||||||
|
$result = $adb->pquery($sql, array($module));
|
||||||
|
$num_rows=$adb->num_rows($result);
|
||||||
|
$count=0;
|
||||||
|
for($i=0; $i<$num_rows;$i++)
|
||||||
|
{
|
||||||
|
foreach($exploded_id as $value)
|
||||||
|
if($value == $adb->query_result($result,$i,"bean_id"))
|
||||||
|
$count++;
|
||||||
|
array_push($imported_records,$adb->query_result($result,$i,"bean_id"));
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($record_count == $count)
|
||||||
|
$no_existing=1;
|
||||||
|
else
|
||||||
|
$no_existing=0;
|
||||||
|
|
||||||
|
$smarty->assign("MOD", $mod_strings);
|
||||||
|
$smarty->assign("APP", $app_strings);
|
||||||
|
$smarty->assign("RECORD_COUNT",$record_count);
|
||||||
|
$smarty->assign("THEME", $theme);
|
||||||
|
$smarty->assign("IMAGE_PATH", $image_path);
|
||||||
|
$smarty->assign("MODULENAME", $module);
|
||||||
|
$smarty->assign("PARENT_TAB", $parent_tab);
|
||||||
|
$smarty->assign("JS_ARRAY", $js_arr);
|
||||||
|
$smarty->assign("ID_ARRAY", $exploded_id);
|
||||||
|
$smarty->assign("IDSTRING",$idstring);
|
||||||
|
$smarty->assign("ALLVALUES", $all_values);
|
||||||
|
$smarty->assign("FIELD_ARRAY", $fld_array);
|
||||||
|
$smarty->assign("IMPORTED_RECORDS", $imported_records);
|
||||||
|
$smarty->assign("NO_EXISTING", $no_existing);
|
||||||
|
$smarty->display("MergeFields.tpl");
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('include/quickcreate.php');
|
||||||
|
?>
|
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
global $current_user, $currentModule;
|
||||||
|
|
||||||
|
checkFileAccess("modules/$currentModule/$currentModule.php");
|
||||||
|
require_once("modules/$currentModule/$currentModule.php");
|
||||||
|
|
||||||
|
$focus = new $currentModule();
|
||||||
|
setObjectValuesFromRequest($focus);
|
||||||
|
|
||||||
|
$mode = $_REQUEST['mode'];
|
||||||
|
$record=$_REQUEST['record'];
|
||||||
|
if($mode) $focus->mode = $mode;
|
||||||
|
if($record)$focus->id = $record;
|
||||||
|
|
||||||
|
if($_REQUEST['assigntype'] == 'U') {
|
||||||
|
$focus->column_fields['assigned_user_id'] = $_REQUEST['assigned_user_id'];
|
||||||
|
} elseif($_REQUEST['assigntype'] == 'T') {
|
||||||
|
$focus->column_fields['assigned_user_id'] = $_REQUEST['assigned_group_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$focus->save($currentModule);
|
||||||
|
$return_id = $focus->id;
|
||||||
|
|
||||||
|
$search = vtlib_purify($_REQUEST['search_url']);
|
||||||
|
|
||||||
|
$parenttab = getParentTab();
|
||||||
|
if($_REQUEST['return_module'] != '') {
|
||||||
|
$return_module = vtlib_purify($_REQUEST['return_module']);
|
||||||
|
} else {
|
||||||
|
$return_module = $currentModule;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($_REQUEST['return_action'] != '') {
|
||||||
|
$return_action = vtlib_purify($_REQUEST['return_action']);
|
||||||
|
} else {
|
||||||
|
$return_action = "DetailView";
|
||||||
|
}
|
||||||
|
|
||||||
|
if($_REQUEST['return_id'] != '') {
|
||||||
|
$return_id = vtlib_purify($_REQUEST['return_id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
header("Location: index.php?action=$return_action&module=$return_module&record=$return_id&parenttab=$parenttab&start=".vtlib_purify($_REQUEST['pagenumber']).$search);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
|
||||||
|
include('modules/Vtiger/Settings.php');
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('include/Ajax/TagCloud.php');
|
||||||
|
?>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?php
|
||||||
|
/*+*******************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
*********************************************************************************/
|
||||||
|
require_once 'modules/Home/UnifiedSearch.php';
|
||||||
|
?>
|
|
@ -0,0 +1,15 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
global $currentModule;
|
||||||
|
|
||||||
|
checkFileAccess("modules/$currentModule/ListView.php");
|
||||||
|
include_once("modules/$currentModule/ListView.php");
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
|
||||||
|
$mod_strings = Array(
|
||||||
|
'ModuleName' => 'Modulname',
|
||||||
|
|
||||||
|
'LBL_CUSTOM_INFORMATION' => 'zusätzliche Information',
|
||||||
|
'LBL_MODULEBLOCK_INFORMATION' => 'ModuleBlock Information',
|
||||||
|
|
||||||
|
'ModuleFieldLabel' => 'ModuleFieldLabel Text',
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
|
||||||
|
$mod_strings = Array(
|
||||||
|
'ModuleName'=>'Module Name',
|
||||||
|
'LBL_CUSTOM_INFORMATION'=>'Custom Information',
|
||||||
|
'LBL_MODULEBLOCK_INFORMATION'=>'Module Block Information',
|
||||||
|
'ModuleFieldLabel'=>'Module Field Label Text',
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
|
||||||
|
$mod_strings = Array(
|
||||||
|
'ModuleName' => 'Module Name',
|
||||||
|
|
||||||
|
'LBL_CUSTOM_INFORMATION' => 'Custom Information',
|
||||||
|
'LBL_MODULEBLOCK_INFORMATION' => 'ModuleBlock Information',
|
||||||
|
|
||||||
|
'ModuleFieldLabel' => 'ModuleFieldLabel Text',
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,20 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
|
||||||
|
$mod_strings = Array(
|
||||||
|
'ModuleName' => 'Nome Módulo',
|
||||||
|
|
||||||
|
'LBL_CUSTOM_INFORMATION' => 'Imformação Customizada',
|
||||||
|
'LBL_MODULEBLOCK_INFORMATION' => 'Informação Bloco Módulo',
|
||||||
|
|
||||||
|
'ModuleFieldLabel' => 'Texto Rótulo Campo Módulo',
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,33 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Copyright (C) 2006-2012 YUCHENG HU
|
||||||
|
*
|
||||||
|
* ---------------------------------------------------------
|
||||||
|
* OSSEZ (中国) 信息技术有限公司
|
||||||
|
* http://www.ossez.com
|
||||||
|
* http://src.ossez.com
|
||||||
|
*
|
||||||
|
* CONTACT
|
||||||
|
* huyuchengus@gmail.com / yucheng.hu@ossez.com
|
||||||
|
*
|
||||||
|
* ---------------------------------------------------------
|
||||||
|
* [A] GNU GENERAL PUBLIC LICENSE GNU/LGPL
|
||||||
|
* [B] Apache License, Version 2.0
|
||||||
|
*
|
||||||
|
* ---------------------------------------------------------
|
||||||
|
* NOTE
|
||||||
|
* 1. 所有的语言配置文件必须采用无 BOM 的 UTF-8 编码
|
||||||
|
* 2. 本语言文件为 ossez-5.4.0 分支,适用于 vTiger 5.4.0
|
||||||
|
* ---------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
$mod_strings = Array(
|
||||||
|
'ModuleName' => 'Module Name',
|
||||||
|
|
||||||
|
'LBL_CUSTOM_INFORMATION' => 'Custom Information',
|
||||||
|
'LBL_MODULEBLOCK_INFORMATION' => 'ModuleBlock Information',
|
||||||
|
|
||||||
|
'ModuleFieldLabel' => 'ModuleFieldLabel Text',
|
||||||
|
);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,46 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('include/database/PearDatabase.php');
|
||||||
|
@include_once('user_privileges/default_module_view.php');
|
||||||
|
|
||||||
|
global $adb, $singlepane_view, $currentModule;
|
||||||
|
$idlist = vtlib_purify($_REQUEST['idlist']);
|
||||||
|
$destinationModule = vtlib_purify($_REQUEST['destination_module']);
|
||||||
|
$parenttab = getParentTab();
|
||||||
|
|
||||||
|
$forCRMRecord = vtlib_purify($_REQUEST['parentid']);
|
||||||
|
$mode = $_REQUEST['mode'];
|
||||||
|
|
||||||
|
if($singlepane_view == 'true')
|
||||||
|
$action = "DetailView";
|
||||||
|
else
|
||||||
|
$action = "CallRelatedList";
|
||||||
|
|
||||||
|
$focus = CRMEntity::getInstance($currentModule);
|
||||||
|
|
||||||
|
if($mode == 'delete') {
|
||||||
|
// Split the string of ids
|
||||||
|
$ids = explode (";",$idlist);
|
||||||
|
if(!empty($ids)) {
|
||||||
|
$focus->delete_related_module($currentModule, $forCRMRecord, $destinationModule, $ids);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if(!empty($_REQUEST['idlist'])) {
|
||||||
|
// Split the string of ids
|
||||||
|
$ids = explode (";",trim($idlist,";"));
|
||||||
|
} else if(!empty($_REQUEST['entityid'])){
|
||||||
|
$ids = $_REQUEST['entityid'];
|
||||||
|
}
|
||||||
|
if(!empty($ids)) {
|
||||||
|
$focus->save_related_module($currentModule, $forCRMRecord, $destinationModule, $ids);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
header("Location: index.php?module=$currentModule&record=$forCRMRecord&action=$action&parenttab=$parenttab");
|
||||||
|
?>
|
|
@ -0,0 +1,80 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('Smarty_setup.php');
|
||||||
|
require_once('user_privileges/default_module_view.php');
|
||||||
|
|
||||||
|
global $mod_strings, $app_strings, $currentModule, $current_user, $theme, $singlepane_view;
|
||||||
|
|
||||||
|
$category = getParentTab();
|
||||||
|
$action = vtlib_purify($_REQUEST['action']);
|
||||||
|
$record = vtlib_purify($_REQUEST['record']);
|
||||||
|
$isduplicate = vtlib_purify($_REQUEST['isDuplicate']);
|
||||||
|
|
||||||
|
if($singlepane_view == 'true' && $action == 'CallRelatedList') {
|
||||||
|
header("Location:index.php?action=DetailView&module=$currentModule&record=$record&parenttab=$category");
|
||||||
|
} else {
|
||||||
|
|
||||||
|
$tool_buttons = Button_Check($currentModule);
|
||||||
|
|
||||||
|
$focus = CRMEntity::getInstance($currentModule);
|
||||||
|
if($record != '') {
|
||||||
|
$focus->retrieve_entity_info($record, $currentModule);
|
||||||
|
$focus->id = $record;
|
||||||
|
}
|
||||||
|
|
||||||
|
$smarty = new vtigerCRM_Smarty;
|
||||||
|
|
||||||
|
if($isduplicate == 'true') $focus->id = '';
|
||||||
|
if(isset($_REQUEST['mode']) && $_REQUEST['mode'] != ' ') $smarty->assign("OP_MODE",vtlib_purify($_REQUEST['mode']));
|
||||||
|
if(!$_SESSION['rlvs'][$currentModule]) unset($_SESSION['rlvs']);
|
||||||
|
|
||||||
|
// Identify this module as custom module.
|
||||||
|
$smarty->assign('CUSTOM_MODULE', true);
|
||||||
|
|
||||||
|
$smarty->assign('APP', $app_strings);
|
||||||
|
$smarty->assign('MOD', $mod_strings);
|
||||||
|
$smarty->assign('MODULE', $currentModule);
|
||||||
|
// TODO: Update Single Module Instance name here.
|
||||||
|
$smarty->assign('SINGLE_MOD', getTranslatedString('SINGLE_'.$currentModule, $currentModule));
|
||||||
|
$smarty->assign('CATEGORY', $category);
|
||||||
|
$smarty->assign('IMAGE_PATH', "themes/$theme/images/");
|
||||||
|
$smarty->assign('THEME', $theme);
|
||||||
|
$smarty->assign('ID', $focus->id);
|
||||||
|
$smarty->assign('MODE', $focus->mode);
|
||||||
|
$smarty->assign('CHECK', $tool_buttons);
|
||||||
|
|
||||||
|
$smarty->assign('NAME', $focus->column_fields[$focus->def_detailview_recname]);
|
||||||
|
$smarty->assign('UPDATEINFO',updateInfo($focus->id));
|
||||||
|
|
||||||
|
// Module Sequence Numbering
|
||||||
|
$mod_seq_field = getModuleSequenceField($currentModule);
|
||||||
|
if ($mod_seq_field != null) {
|
||||||
|
$mod_seq_id = $focus->column_fields[$mod_seq_field['name']];
|
||||||
|
} else {
|
||||||
|
$mod_seq_id = $focus->id;
|
||||||
|
}
|
||||||
|
$smarty->assign('MOD_SEQ_ID', $mod_seq_id);
|
||||||
|
// END
|
||||||
|
|
||||||
|
$related_array = getRelatedLists($currentModule, $focus);
|
||||||
|
$smarty->assign('RELATEDLISTS', $related_array);
|
||||||
|
|
||||||
|
require_once('include/ListView/RelatedListViewSession.php');
|
||||||
|
if(!empty($_REQUEST['selected_header']) && !empty($_REQUEST['relation_id'])) {
|
||||||
|
$relationId = vtlib_purify($_REQUEST['relation_id']);
|
||||||
|
RelatedListViewSession::addRelatedModuleToSession($relationId,
|
||||||
|
vtlib_purify($_REQUEST['selected_header']));
|
||||||
|
}
|
||||||
|
$open_related_modules = RelatedListViewSession::getRelatedModulesFromSession();
|
||||||
|
$smarty->assign("SELECTEDHEADERS", $open_related_modules);
|
||||||
|
|
||||||
|
$smarty->display('RelatedLists.tpl');
|
||||||
|
}
|
||||||
|
?>
|
|
@ -0,0 +1,12 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
include('modules/CustomView/index.php');
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,27 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
global $currentModule;
|
||||||
|
$focus = CRMEntity::getInstance($currentModule);
|
||||||
|
|
||||||
|
$record = vtlib_purify($_REQUEST['record']);
|
||||||
|
$module = vtlib_purify($_REQUEST['module']);
|
||||||
|
$return_module = vtlib_purify($_REQUEST['return_module']);
|
||||||
|
$return_action = vtlib_purify($_REQUEST['return_action']);
|
||||||
|
$return_id = vtlib_purify($_REQUEST['return_id']);
|
||||||
|
$parenttab = getParentTab();
|
||||||
|
|
||||||
|
//Added to fix 4600
|
||||||
|
$url = getBasic_Advance_SearchURL();
|
||||||
|
|
||||||
|
DeleteEntity($currentModule, $return_module, $focus, $record, $return_id);
|
||||||
|
|
||||||
|
header("Location: index.php?module=$return_module&action=$return_action&record=$return_id&parenttab=$parenttab&relmodule=$module".$url);
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,110 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
require_once('Smarty_setup.php');
|
||||||
|
require_once('user_privileges/default_module_view.php');
|
||||||
|
|
||||||
|
global $mod_strings, $app_strings, $currentModule, $current_user, $theme, $singlepane_view;
|
||||||
|
|
||||||
|
$focus = CRMEntity::getInstance($currentModule);
|
||||||
|
|
||||||
|
$tool_buttons = Button_Check($currentModule);
|
||||||
|
$smarty = new vtigerCRM_Smarty();
|
||||||
|
|
||||||
|
$record = $_REQUEST['record'];
|
||||||
|
$isduplicate = vtlib_purify($_REQUEST['isDuplicate']);
|
||||||
|
$tabid = getTabid($currentModule);
|
||||||
|
$category = getParentTab($currentModule);
|
||||||
|
|
||||||
|
if($record != '') {
|
||||||
|
$focus->id = $record;
|
||||||
|
$focus->retrieve_entity_info($record, $currentModule);
|
||||||
|
}
|
||||||
|
if($isduplicate == 'true') $focus->id = '';
|
||||||
|
|
||||||
|
// Identify this module as custom module.
|
||||||
|
$smarty->assign('CUSTOM_MODULE', true);
|
||||||
|
|
||||||
|
$smarty->assign('APP', $app_strings);
|
||||||
|
$smarty->assign('MOD', $mod_strings);
|
||||||
|
$smarty->assign('MODULE', $currentModule);
|
||||||
|
// TODO: Update Single Module Instance name here.
|
||||||
|
$smarty->assign('SINGLE_MOD', 'SINGLE_'.$currentModule);
|
||||||
|
$smarty->assign('CATEGORY', $category);
|
||||||
|
$smarty->assign('IMAGE_PATH', "themes/$theme/images/");
|
||||||
|
$smarty->assign('THEME', $theme);
|
||||||
|
$smarty->assign('ID', $focus->id);
|
||||||
|
$smarty->assign('MODE', $focus->mode);
|
||||||
|
|
||||||
|
$recordName = array_values(getEntityName($currentModule, $focus->id));
|
||||||
|
$recordName = $recordName[0];
|
||||||
|
$smarty->assign('NAME', $recordName);
|
||||||
|
$smarty->assign('UPDATEINFO',updateInfo($focus->id));
|
||||||
|
|
||||||
|
// Module Sequence Numbering
|
||||||
|
$mod_seq_field = getModuleSequenceField($currentModule);
|
||||||
|
if ($mod_seq_field != null) {
|
||||||
|
$mod_seq_id = $focus->column_fields[$mod_seq_field['name']];
|
||||||
|
} else {
|
||||||
|
$mod_seq_id = $focus->id;
|
||||||
|
}
|
||||||
|
$smarty->assign('MOD_SEQ_ID', $mod_seq_id);
|
||||||
|
// END
|
||||||
|
|
||||||
|
$validationArray = split_validationdataArray(getDBValidationData($focus->tab_name, $tabid));
|
||||||
|
$smarty->assign('VALIDATION_DATA_FIELDNAME',$validationArray['fieldname']);
|
||||||
|
$smarty->assign('VALIDATION_DATA_FIELDDATATYPE',$validationArray['datatype']);
|
||||||
|
$smarty->assign('VALIDATION_DATA_FIELDLABEL',$validationArray['fieldlabel']);
|
||||||
|
|
||||||
|
$smarty->assign('EDIT_PERMISSION', isPermitted($currentModule, 'EditView', $record));
|
||||||
|
$smarty->assign('CHECK', $tool_buttons);
|
||||||
|
|
||||||
|
if(PerformancePrefs::getBoolean('DETAILVIEW_RECORD_NAVIGATION', true) && isset($_SESSION[$currentModule.'_listquery'])){
|
||||||
|
$recordNavigationInfo = ListViewSession::getListViewNavigation($focus->id);
|
||||||
|
VT_detailViewNavigation($smarty,$recordNavigationInfo,$focus->id);
|
||||||
|
}
|
||||||
|
|
||||||
|
$smarty->assign('IS_REL_LIST', isPresentRelatedLists($currentModule));
|
||||||
|
$smarty->assign('SinglePane_View', $singlepane_view);
|
||||||
|
|
||||||
|
if($singlepane_view == 'true') {
|
||||||
|
$related_array = getRelatedLists($currentModule,$focus);
|
||||||
|
$smarty->assign("RELATEDLISTS", $related_array);
|
||||||
|
|
||||||
|
require_once('include/ListView/RelatedListViewSession.php');
|
||||||
|
if(!empty($_REQUEST['selected_header']) && !empty($_REQUEST['relation_id'])) {
|
||||||
|
RelatedListViewSession::addRelatedModuleToSession(vtlib_purify($_REQUEST['relation_id']),
|
||||||
|
vtlib_purify($_REQUEST['selected_header']));
|
||||||
|
}
|
||||||
|
$open_related_modules = RelatedListViewSession::getRelatedModulesFromSession();
|
||||||
|
$smarty->assign("SELECTEDHEADERS", $open_related_modules);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(isPermitted($currentModule, 'EditView', $record) == 'yes')
|
||||||
|
$smarty->assign('EDIT_DUPLICATE', 'permitted');
|
||||||
|
if(isPermitted($currentModule, 'Delete', $record) == 'yes')
|
||||||
|
$smarty->assign('DELETE', 'permitted');
|
||||||
|
|
||||||
|
$smarty->assign('BLOCKS', getBlocks($currentModule,'detail_view','',$focus->column_fields));
|
||||||
|
|
||||||
|
// Gather the custom link information to display
|
||||||
|
include_once('vtlib/Vtiger/Link.php');
|
||||||
|
$customlink_params = Array('MODULE'=>$currentModule, 'RECORD'=>$focus->id, 'ACTION'=>vtlib_purify($_REQUEST['action']));
|
||||||
|
$smarty->assign('CUSTOM_LINKS', Vtiger_Link::getAllByType(getTabid($currentModule), Array('DETAILVIEWBASIC','DETAILVIEW','DETAILVIEWWIDGET'), $customlink_params));
|
||||||
|
// END
|
||||||
|
|
||||||
|
// Record Change Notification
|
||||||
|
$focus->markAsViewed($current_user->id);
|
||||||
|
// END
|
||||||
|
|
||||||
|
$smarty->assign('DETAILVIEW_AJAX_EDIT', PerformancePrefs::getBoolean('DETAILVIEW_AJAX_EDIT', true));
|
||||||
|
|
||||||
|
$smarty->display('DetailView.tpl');
|
||||||
|
|
||||||
|
?>
|
|
@ -0,0 +1,41 @@
|
||||||
|
<?php
|
||||||
|
/*+**********************************************************************************
|
||||||
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
||||||
|
* ("License"); You may not use this file except in compliance with the License
|
||||||
|
* The Original Code is: vtiger CRM Open Source
|
||||||
|
* The Initial Developer of the Original Code is vtiger.
|
||||||
|
* Portions created by vtiger are Copyright (C) vtiger.
|
||||||
|
* All Rights Reserved.
|
||||||
|
************************************************************************************/
|
||||||
|
global $currentModule;
|
||||||
|
$modObj = CRMEntity::getInstance($currentModule);
|
||||||
|
|
||||||
|
$ajaxaction = $_REQUEST["ajxaction"];
|
||||||
|
if($ajaxaction == 'DETAILVIEW')
|
||||||
|
{
|
||||||
|
$crmid = $_REQUEST['recordid'];
|
||||||
|
$tablename = $_REQUEST['tableName'];
|
||||||
|
$fieldname = $_REQUEST['fldName'];
|
||||||
|
$fieldvalue = utf8RawUrlDecode($_REQUEST['fieldValue']);
|
||||||
|
if($crmid != '')
|
||||||
|
{
|
||||||
|
$modObj->retrieve_entity_info($crmid, $currentModule);
|
||||||
|
$modObj->column_fields[$fieldname] = $fieldvalue;
|
||||||
|
$modObj->id = $crmid;
|
||||||
|
$modObj->mode = 'edit';
|
||||||
|
$modObj->save($currentModule);
|
||||||
|
if($modObj->id != '')
|
||||||
|
{
|
||||||
|
echo ':#:SUCCESS';
|
||||||
|
}else
|
||||||
|
{
|
||||||
|
echo ':#:FAILURE';
|
||||||
|
}
|
||||||
|
}else
|
||||||
|
{
|
||||||
|
echo ':#:FAILURE';
|
||||||
|
}
|
||||||
|
} elseif($ajaxaction == "LOADRELATEDLIST" || $ajaxaction == "DISABLEMODULE"){
|
||||||
|
require_once 'include/ListView/RelatedListViewContents.php';
|
||||||
|
}
|
||||||
|
?>
|
Loading…
Reference in New Issue