| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/crm_easylife/modules/CTMobile/api/ws/ |
Upload File : |
<?php
/*+*******************************************************************************
* The content of this file is subject to the CRMTiger Pro license.
* ("License"); You may not use this file except in compliance with the License
* The Initial Developer of the Original Code is vTiger
* The Modified Code of the Original Code owned by https://crmtiger.com/
* Portions created by CRMTiger.com are Copyright(C) CRMTiger.com
* All Rights Reserved.
***************************************************************************** */
class CTMobile_WS_FetchModuleFilters extends CTMobile_WS_Controller {
function process(CTMobile_API_Request $request) {
$response = new CTMobile_API_Response();
$module = trim($request->get('module'));
if($module == 'Events'){
$module = 'Calendar';
}
global $adb,$current_user;
$current_user = $this->getActiveUser();
$results = array();
$filters = array();
$AllFilters = CustomView_Record_Model::getAll($module);
$defaultcvid = $this->defaultCvId($current_user,$module);
foreach ($AllFilters as $key => $filter) {
$cvid = $filter->get('cvid');
$viewname = vtranslate($filter->get('viewname'),$module);
$setdefault = $filter->get('setdefault');
$setmetrics = $filter->get('setmetrics');
$moduleName = $filter->get('entitytype');
$status = $filter->get('status');
$userid = $filter->get('userid');
$userRecordModel = Users_Record_Model::getInstanceById($userid,'Users');
$userName = $userRecordModel->get('first_name').' '.$userRecordModel->get('last_name');
if($defaultcvid == $cvid){
$isDefault = 1;
}else{
$isDefault = 0;
}
$filters[] = array('cvid'=>$cvid,'viewname'=>$viewname,'setdefault'=>$setdefault,'setmetrics'=>$setmetrics,'moduleName'=>$moduleName,'userName'=>$userName,'isDefault'=>$isDefault);
}
$results = $filters;
if(count($filters) == 0){
$results['code'] = 404;
$results['message'] = $this->CTTranslate('No records found');
$response->setResult($results);
}else{
$response->setResult(array('filters'=>$results));
}
return $response;
}
function defaultCvId($current_user,$module){
global $adb;
$defcv_result = $adb->pquery("select default_cvid from vtiger_user_module_preferences where userid = ? and tabid =?", array($current_user->id, getTabid($module)));
if ($adb->num_rows($defcv_result) > 0) {
$viewid = $adb->query_result($defcv_result, 0, 'default_cvid');
} else {
$query = "select cvid from vtiger_customview where setdefault=1 and entitytype=?";
$cvresult = $adb->pquery($query, array($module));
if ($adb->num_rows($cvresult) > 0) {
$viewid = $adb->query_result($cvresult, 0, 'cvid');
} else
$viewid = '';
}
if ($viewid == '' || $viewid == 0) {
$query = "select cvid from vtiger_customview where viewname='All' and entitytype=?";
$cvresult = $adb->pquery($query, array($module));
$viewid = $adb->query_result($cvresult, 0, 'cvid');
}
return $viewid;
}
}