vtigerossez/modules/Settings/DefaultFieldPermissions.php

93 lines
3.4 KiB
PHP
Raw Permalink Normal View History

<?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/utils/UserInfoUtil.php');
require_once('include/utils/utils.php');
global $mod_strings;
global $app_strings;
global $app_list_strings;
$smarty = new vtigerCRM_Smarty;
global $adb;
global $theme;
global $theme_path;
global $image_path;
$theme_path="themes/".$theme."/";
$image_path=$theme_path."images/";
//$field_module = Array('Leads','Accounts','Contacts','Potentials','HelpDesk','Products','Notes','Calendar','Events','Vendors','PriceBooks','Quotes','PurchaseOrder','SalesOrder','Invoice','Campaigns','Faq');
$field_module=getFieldModuleAccessArray();
$allfields=Array();
foreach($field_module as $fld_module=>$mod_name)
{
$fieldListResult = getDefOrgFieldList($fld_module);
$noofrows = $adb->num_rows($fieldListResult);
$language_strings = return_module_language($current_language,$fld_module);
$allfields[$fld_module] = getStdOutput($fieldListResult, $noofrows, $language_strings,$profileid);
}
if($_REQUEST['fld_module'] != '')
$smarty->assign("DEF_MODULE",vtlib_purify($_REQUEST['fld_module']));
else
$smarty->assign("DEF_MODULE",'Leads');
/** Function to get the field label/permission array to construct the default orgnization field UI for the specified profile
* @param $fieldListResult -- mysql query result that contains the field label and uitype:: Type array
* @param $lang_strings -- i18n language mod strings array:: Type array
* @param $profileid -- profile id:: Type integer
* @returns $standCustFld -- field label/permission array :: Type varchar
*
*/
function getStdOutput($fieldListResult, $noofrows, $lang_strings,$profileid)
{
global $adb;
global $image_path,$theme;
$standCustFld = Array();
for($i=0; $i<$noofrows; $i++)
{
$uitype = $adb->query_result($fieldListResult,$i,"uitype");
$fieldlabel = $adb->query_result($fieldListResult,$i,"fieldlabel");
$typeofdata = $adb->query_result($fieldListResult,$i,"typeofdata");
$fieldtype = explode("~",$typeofdata);
if($lang_strings[$fieldlabel] !='')
$standCustFld []= $lang_strings[$fieldlabel];
else
$standCustFld []= $fieldlabel;
if($adb->query_result($fieldListResult,$i,"visible") == 0 || ($uitype == 117 && $fieldtype[1] == "M"))
{
$visible ="<img src='" . vtiger_imageurl('prvPrfSelectedTick.gif', $theme) . "'>";
}
else
{
$visible = "<img src='" . vtiger_imageurl('no.gif', $theme) . "'>";
}
$standCustFld []= $visible;
}
$standCustFld=array_chunk($standCustFld,2);
$standCustFld=array_chunk($standCustFld,4);
return $standCustFld;
}
$smarty->assign("FIELD_INFO",$field_module);
$smarty->assign("FIELD_LISTS",$allfields);
$smarty->assign("MOD", return_module_language($current_language,'Settings'));
$smarty->assign("THEME", $theme);
$smarty->assign("IMAGE_PATH",$image_path);
$smarty->assign("APP", $app_strings);
$smarty->assign("CMOD", $mod_strings);
$smarty->assign("MODE",'view');
$smarty->display("FieldAccess.tpl");
?>