PATH:
home
/
letacommog
/
crmleta
/
modules
/
Emails
/
actions
<?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 Emails_CheckServerInfo_Action extends Vtiger_Action_Controller { function checkPermission(Vtiger_Request $request) { $moduleName = $request->getModule(); $moduleModel = Vtiger_Module_Model::getInstance($moduleName); $currentUserPriviligesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel(); if(!$currentUserPriviligesModel->hasModulePermission($moduleModel->getId())) { throw new AppException(vtranslate($moduleName, $moduleName).' '.vtranslate('LBL_NOT_ACCESSIBLE')); } } function process(Vtiger_Request $request) { $db = PearDatabase::getInstance(); $response = new Vtiger_Response(); $result = $db->pquery('SELECT 1 FROM vtiger_systems WHERE server_type = ?', array('email')); if($db->num_rows($result)) { $response->setResult(true); } else { $response->setResult(false); } return $response; } }
[+]
..
[-] CheckServerInfo.php
[edit]
[-] DownloadFile.php
[edit]
[-] BasicAjax.php
[edit]
[-] TrackAccess.php
[edit]