43 lines
1.8 KiB
PHP
43 lines
1.8 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.
|
|
************************************************************************************/
|
|
|
|
global $app_strings, $mod_strings, $current_language, $currentModule, $current_user, $theme, $adb;
|
|
|
|
$selected_modules = array();
|
|
if(!empty($_SESSION['__UnifiedSearch_SelectedModules__']) && is_array($_SESSION['__UnifiedSearch_SelectedModules__'])) {
|
|
$selected_modules = $_SESSION['__UnifiedSearch_SelectedModules__'];
|
|
}
|
|
|
|
$allowed_modules = array();
|
|
$sql = 'select distinct vtiger_field.tabid,name from vtiger_field inner join vtiger_tab on vtiger_tab.tabid=vtiger_field.tabid where vtiger_tab.tabid not in (16,29) and vtiger_tab.presence != 1 and vtiger_field.presence in (0,2)';
|
|
$moduleres = $adb->query($sql);
|
|
while($modulerow = $adb->fetch_array($moduleres)) {
|
|
if(is_admin($current_user) || isPermitted($modulerow['name'], 'DetailView') == 'yes') {
|
|
$modulename = $modulerow['name'];
|
|
$allowed_modules[$modulename] = array(
|
|
'label' => getTranslatedString($modulename, $modulename),
|
|
'selected' => in_array($modulename, $selected_modules)
|
|
);
|
|
}
|
|
}
|
|
ksort($allowed_modules);
|
|
|
|
require_once('Smarty_setup.php');
|
|
|
|
$smarty = new vtigerCRM_Smarty();
|
|
$smarty->assign('MOD', $mod_strings);
|
|
$smarty->assign('APP', $app_strings);
|
|
$smarty->assign('THEME', $theme);
|
|
$smarty->assign('IMAGE_PATH', "themes/$theme/images/");
|
|
$smarty->assign('ALLOWED_MODULES', $allowed_modules);
|
|
|
|
$smarty->display('UnifiedSearchModules.tpl');
|
|
|
|
?>
|