286 lines
8.7 KiB
PHP
286 lines
8.7 KiB
PHP
|
<?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');
|
||
|
require_once('include/utils/utils.php');
|
||
|
|
||
|
/**
|
||
|
* Function to get vtiger_field typename
|
||
|
* @param $uitype :: uitype -- Type integer
|
||
|
* returns the vtiger_field type name -- Type string
|
||
|
*/
|
||
|
function getCustomFieldTypeName($uitype)
|
||
|
{
|
||
|
|
||
|
global $mod_strings,$app_strings;
|
||
|
global $log;
|
||
|
$log->debug("Entering getCustomFieldTypeName(".$uitype.") method ...");
|
||
|
global $log;
|
||
|
$log->info("uitype is ".$uitype);
|
||
|
$fldname = '';
|
||
|
|
||
|
/*
|
||
|
* salutation type is an exception where the uitype 55 is considered to be as text.
|
||
|
*/
|
||
|
|
||
|
if($uitype == 1 || $uitype == 55 || $uitype == 255)
|
||
|
{
|
||
|
$fldname = $mod_strings['Text'];
|
||
|
}
|
||
|
elseif($uitype == 7)
|
||
|
{
|
||
|
$fldname = $mod_strings['Number'];
|
||
|
}
|
||
|
elseif($uitype == 9)
|
||
|
{
|
||
|
$fldname = $mod_strings['Percent'];
|
||
|
}
|
||
|
elseif($uitype == 5 || $uitype == 23)
|
||
|
{
|
||
|
$fldname = $mod_strings['Date'];
|
||
|
}
|
||
|
elseif($uitype == 13)
|
||
|
{
|
||
|
$fldname = $mod_strings['Email'];
|
||
|
}
|
||
|
elseif($uitype == 11)
|
||
|
{
|
||
|
$fldname = $mod_strings['Phone'];
|
||
|
}
|
||
|
elseif($uitype == 15 )
|
||
|
{
|
||
|
$fldname = $mod_strings['PickList'];
|
||
|
}
|
||
|
elseif($uitype == 17)
|
||
|
{
|
||
|
$fldname = $mod_strings['LBL_URL'];
|
||
|
}
|
||
|
elseif($uitype == 56)
|
||
|
{
|
||
|
$fldname = $mod_strings['LBL_CHECK_BOX'];
|
||
|
}
|
||
|
elseif($uitype == 71)
|
||
|
{
|
||
|
$fldname = $mod_strings['Currency'];
|
||
|
}
|
||
|
elseif($uitype == 21 || $uitype == 19)
|
||
|
{
|
||
|
$fldname = $mod_strings['LBL_TEXT_AREA'];
|
||
|
}
|
||
|
elseif($uitype == 33)
|
||
|
{
|
||
|
$fldname = $mod_strings['LBL_MULTISELECT_COMBO'];
|
||
|
}
|
||
|
elseif($uitype == 85)
|
||
|
{
|
||
|
$fldname = $mod_strings['Skype'];
|
||
|
}
|
||
|
$log->debug("Exiting getCustomFieldTypeName method ...");
|
||
|
return $fldname;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Function to get custom vtiger_fields
|
||
|
* @param $module :: vtiger_table name -- Type string
|
||
|
* returns customfields in key-value pair array format
|
||
|
*/
|
||
|
function getCustomFieldArray($module)
|
||
|
{
|
||
|
global $log;
|
||
|
$log->debug("Entering getCustomFieldArray(".$module.") method ...");
|
||
|
global $adb;
|
||
|
$custquery = "select tablename,fieldname from vtiger_field where tablename=? and vtiger_field.presence in (0,2) order by tablename";
|
||
|
$custresult = $adb->pquery($custquery, array('vtiger_'.strtolower($module).'cf'));
|
||
|
$custFldArray = Array();
|
||
|
$noofrows = $adb->num_rows($custresult);
|
||
|
for($i=0; $i<$noofrows; $i++)
|
||
|
{
|
||
|
$colName=$adb->query_result($custresult,$i,"fieldname");
|
||
|
$custFldArray[$colName] = $i;
|
||
|
}
|
||
|
$log->debug("Exiting getCustomFieldArray method ...");
|
||
|
return $custFldArray;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Function to get columnname and vtiger_fieldlabel from vtiger_field vtiger_table
|
||
|
* @param $module :: module name -- Type string
|
||
|
* @param $trans_array :: translated column vtiger_fields -- Type array
|
||
|
* returns trans_array in key-value pair array format
|
||
|
*/
|
||
|
function getCustomFieldTrans($module, $trans_array)
|
||
|
{
|
||
|
global $log;
|
||
|
$log->debug("Entering getCustomFieldTrans(".$module.",". $trans_array.") method ...");
|
||
|
global $adb;
|
||
|
$tab_id = getTabid($module);
|
||
|
$custquery = "select columnname,fieldlabel from vtiger_field where generatedtype=2 and vtiger_field.presence in (0,2) and tabid=?";
|
||
|
$custresult = $adb->pquery($custquery, array($tab_id));
|
||
|
$custFldArray = Array();
|
||
|
$noofrows = $adb->num_rows($custresult);
|
||
|
for($i=0; $i<$noofrows; $i++)
|
||
|
{
|
||
|
$colName=$adb->query_result($custresult,$i,"columnname");
|
||
|
$fldLbl = $adb->query_result($custresult,$i,"fieldlabel");
|
||
|
$trans_array[$colName] = $fldLbl;
|
||
|
}
|
||
|
$log->debug("Exiting getCustomFieldTrans method ...");
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Function to get customfield record from vtiger_field vtiger_table
|
||
|
* @param $tab :: Tab ID -- Type integer
|
||
|
* @param $datatype :: vtiger_field name -- Type string
|
||
|
* @param $id :: vtiger_field Id -- Type integer
|
||
|
* returns the data result in string format
|
||
|
*/
|
||
|
function getCustomFieldData($tab,$id,$datatype)
|
||
|
{
|
||
|
global $log;
|
||
|
$log->debug("Entering getCustomFieldData(".$tab.",".$id.",".$datatype.") method ...");
|
||
|
global $adb;
|
||
|
$query = "select * from vtiger_field where tabid=? and fieldid=? and vtiger_field.presence in (0,2)";
|
||
|
$result = $adb->pquery($query, array($tab, $id));
|
||
|
$return_data=$adb->fetch_array($result);
|
||
|
$log->debug("Exiting getCustomFieldData method ...");
|
||
|
return $return_data[$datatype];
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Function to get customfield type,length value,decimal value and picklist value
|
||
|
* @param $label :: vtiger_field typename -- Type string
|
||
|
* @param $typeofdata :: datatype -- Type string
|
||
|
* returns the vtiger_field type,length,decimal
|
||
|
* and picklist value in ';' separated array format
|
||
|
*/
|
||
|
function getFldTypeandLengthValue($label,$typeofdata)
|
||
|
{
|
||
|
global $log;
|
||
|
global $mod_strings,$app_strings;
|
||
|
$log->debug("Entering getFldTypeandLengthValue(".$label.",".$typeofdata.") method ...");
|
||
|
if($label == $mod_strings['Text'])
|
||
|
{
|
||
|
$types = explode("~",$typeofdata);
|
||
|
$data_array=array('0',$types[3]);
|
||
|
$fieldtype = implode(";",$data_array);
|
||
|
}
|
||
|
elseif($label == $mod_strings['Number'])
|
||
|
{
|
||
|
$types = explode("~",$typeofdata);
|
||
|
$data_decimal = explode(",",$types[2]);
|
||
|
$data_array=array('1',$data_decimal[0],$data_decimal[1]);
|
||
|
$fieldtype = implode(";",$data_array);
|
||
|
}
|
||
|
elseif($label == $mod_strings['Percent'])
|
||
|
{
|
||
|
$types = explode("~",$typeofdata);
|
||
|
$data_array=array('2','5',$types[3]);
|
||
|
$fieldtype = implode(";",$data_array);
|
||
|
}
|
||
|
elseif($label == $mod_strings['Currency'])
|
||
|
{
|
||
|
$types = explode("~",$typeofdata);
|
||
|
$data_decimal = explode(",",$types[2]);
|
||
|
$data_array=array('3',$data_decimal[0],$data_decimal[1]);
|
||
|
$fieldtype = implode(";",$data_array);
|
||
|
}
|
||
|
elseif($label == $mod_strings['Date'])
|
||
|
{
|
||
|
$fieldtype = '4';
|
||
|
}
|
||
|
elseif($label == $mod_strings['Email'])
|
||
|
{
|
||
|
$fieldtype = '5';
|
||
|
}
|
||
|
elseif($label == $mod_strings['Phone'])
|
||
|
{
|
||
|
$fieldtype = '6';
|
||
|
}
|
||
|
elseif($label == $mod_strings['PickList'])
|
||
|
{
|
||
|
$fieldtype = '7';
|
||
|
}
|
||
|
elseif($label == $mod_strings['LBL_URL'])
|
||
|
{
|
||
|
$fieldtype = '8';
|
||
|
}
|
||
|
elseif($label == $mod_strings['LBL_CHECK_BOX'])
|
||
|
{
|
||
|
$fieldtype = '9';
|
||
|
}
|
||
|
elseif($label == $mod_strings['LBL_TEXT_AREA'])
|
||
|
{
|
||
|
$fieldtype = '10';
|
||
|
}
|
||
|
elseif($label == $mod_strings['LBL_MULTISELECT_COMBO'])
|
||
|
{
|
||
|
$fieldtype = '11';
|
||
|
}
|
||
|
elseif($label == $mod_strings['Skype'])
|
||
|
{
|
||
|
$fieldtype = '12';
|
||
|
}
|
||
|
$log->debug("Exiting getFldTypeandLengthValue method ...");
|
||
|
return $fieldtype;
|
||
|
}
|
||
|
|
||
|
function getCalendarCustomFields($tabid,$mode='edit',$col_fields='') {
|
||
|
global $adb, $log, $current_user;
|
||
|
$log->debug("Entering getCalendarCustomFields($tabid, $mode, $col_fields)");
|
||
|
|
||
|
require('user_privileges/user_privileges_'.$current_user->id.'.php');
|
||
|
|
||
|
$block = getBlockId($tabid,"LBL_CUSTOM_INFORMATION");
|
||
|
$custparams = array($block, $tabid);
|
||
|
|
||
|
if($is_admin == true || $profileGlobalPermission[1] == 0 || $profileGlobalPermission[2] == 0) {
|
||
|
$custquery = "select * from vtiger_field where block=? AND vtiger_field.tabid=? ORDER BY fieldid";
|
||
|
} else {
|
||
|
$profileList = getCurrentUserProfileList();
|
||
|
$custquery = "SELECT vtiger_field.* FROM vtiger_field" .
|
||
|
" INNER JOIN vtiger_profile2field ON vtiger_profile2field.fieldid=vtiger_field.fieldid" .
|
||
|
" INNER JOIN vtiger_def_org_field ON vtiger_def_org_field.fieldid=vtiger_field.fieldid" .
|
||
|
" WHERE vtiger_field.block=? AND vtiger_field.tabid=? AND vtiger_profile2field.visible=0" .
|
||
|
" AND vtiger_def_org_field.visible=0 AND vtiger_profile2field.profileid IN (". generateQuestionMarks($profileList) .")";
|
||
|
|
||
|
if ($mode == 'edit') {
|
||
|
$custquery .= " AND vtiger_profile2field.readonly = 0";
|
||
|
}
|
||
|
$custquery .= " ORDER BY vtiger_field.fieldid";
|
||
|
array_push($custparams, $profileList);
|
||
|
}
|
||
|
$custresult = $adb->pquery($custquery, $custparams);
|
||
|
|
||
|
$custFldArray = Array();
|
||
|
$noofrows = $adb->num_rows($custresult);
|
||
|
for($i=0; $i<$noofrows; $i++)
|
||
|
{
|
||
|
$fieldname=$adb->query_result($custresult,$i,"fieldname");
|
||
|
$fieldlabel=$adb->query_result($custresult,$i,"fieldlabel");
|
||
|
$columnName=$adb->query_result($custresult,$i,"columnname");
|
||
|
$uitype=$adb->query_result($custresult,$i,"uitype");
|
||
|
$maxlength = $adb->query_result($custresult,$i,"maximumlength");
|
||
|
$generatedtype = $adb->query_result($custresult,$i,"generatedtype");
|
||
|
$typeofdata = $adb->query_result($custresult,$i,"typeofdata");
|
||
|
|
||
|
if ($mode == 'edit')
|
||
|
$custfld = getOutputHtml($uitype, $fieldname, $fieldlabel, $maxlength, $col_fields,$generatedtype,'Calendar',$mode, $typeofdata);
|
||
|
if ($mode == 'detail_view')
|
||
|
$custfld = getDetailViewOutputHtml($uitype, $fieldname, $fieldlabel, $col_fields,$generatedtype,$tabid);
|
||
|
$custFldArray[] = $custfld;
|
||
|
}
|
||
|
$log->debug("Exiting getCalendarCustomFields()");
|
||
|
return $custFldArray;
|
||
|
}
|
||
|
?>
|