0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
vtiger
/
5.0.4
/
standard
/
htdocs
/
include
/
[
Home
]
File: CustomFieldUtil.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 = ''; if($uitype == 1) { $fldname = $mod_strings['Text']; } elseif($uitype == 7) { $fldname = $mod_strings['Number']; } elseif($uitype == 9) { $fldname = $mod_strings['Percent']; } elseif($uitype == 5) { $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) { $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 * from vtiger_field where tablename=?"; $custresult = $adb->pquery($custquery, array($module)); $custFldArray = Array(); $noofrows = $adb->num_rows($custresult); for($i=0; $i<$noofrows; $i++) { $colName=$adb->query_result($custresult,$i,"column_name"); $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 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=?"; $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; } ?>
© 2017 -
ZeroByte.ID
.