77 lines
3.2 KiB
PHP
77 lines
3.2 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.
|
|
* *********************************************************************************** */
|
|
|
|
class Settings_CustomerPortal_Index_View extends Settings_Vtiger_Index_View {
|
|
|
|
public function process(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$qualifiedModuleName = $request->getModule(false);
|
|
$viewer = $this->getViewer($request);
|
|
|
|
$moduleModel = Settings_Vtiger_Module_Model::getInstance($qualifiedModuleName);
|
|
$moduleModelList = $moduleModel->getModulesList();
|
|
$contactRelatedmoduleModelList = $moduleModel->getContactRelatedModulesList();
|
|
$moduleSequence = $moduleModel->max_sequence+1;
|
|
|
|
$disableModules = array('Contacts', 'Accounts');
|
|
$widgetsModules = array('HelpDesk', 'Faq', 'Documents');
|
|
foreach ($moduleModelList as $key => $retrievedModuleModel) {
|
|
$moduleName = $retrievedModuleModel->getName();
|
|
if (in_array($moduleName, $disableModules)) {
|
|
unset($moduleModelList[$key]);
|
|
}
|
|
|
|
if (in_array($moduleName, $widgetsModules)) {
|
|
$widgetsModuleList[getTabname($key)] = 1;
|
|
}
|
|
}
|
|
$moduleModel->getDashboardInfo();
|
|
$dashboardInfo = $moduleModel->get('dashboardInfo');
|
|
$viewer->assign('PORTAL_URL', vglobal('PORTAL_URL'));
|
|
$viewer->assign('QUALIFIED_MODULE', $qualifiedModuleName);
|
|
$viewer->assign('MODULES_MODELS', $moduleModelList);
|
|
$viewer->assign('USER_MODELS', Users_Record_Model::getAll(true));
|
|
$viewer->assign('GROUP_MODELS', Settings_Groups_Record_Model::getAll());
|
|
$viewer->assign('CURRENT_PORTAL_USER', $moduleModel->getCurrentPortalUser());
|
|
$viewer->assign('CURRENT_DEFAULT_ASSIGNEE', $moduleModel->getCurrentDefaultAssignee());
|
|
$default_shortcuts = $dashboardInfo['shortcuts'];
|
|
$announcement = $dashboardInfo['announcement'];
|
|
$widgets = json_decode($dashboardInfo['widgets'], true);
|
|
$supportNotification = $dashboardInfo['support_notification'];
|
|
$viewer->assign('DEFAULT_SHORTCUTS', $default_shortcuts);
|
|
$viewer->assign('ANNOUNCEMENT', $announcement);
|
|
$viewer->assign('WIDGETS', $widgets);
|
|
$viewer->assign('SUPPORTNOTIFICATION', $supportNotification);
|
|
$viewer->assign('WIDGETS_MODULE_LIST', $widgetsModuleList);
|
|
|
|
$viewer->view('Index.tpl', $qualifiedModuleName);
|
|
}
|
|
|
|
/**
|
|
* Function to get the list of Script models to be included
|
|
* @param Vtiger_Request $request
|
|
* @return <Array> - List of Vtiger_JsScript_Model instances
|
|
*/
|
|
function getHeaderScripts(Vtiger_Request $request) {
|
|
$headerScriptInstances = parent::getHeaderScripts($request);
|
|
$moduleName = $request->getModule();
|
|
|
|
$jsFileNames = array(
|
|
"modules.Settings.$moduleName.resources.CustomerPortal"
|
|
);
|
|
|
|
$jsScriptInstances = $this->checkAndConvertJsScripts($jsFileNames);
|
|
$headerScriptInstances = array_merge($headerScriptInstances, $jsScriptInstances);
|
|
return $headerScriptInstances;
|
|
}
|
|
|
|
}
|