first commit
This commit is contained in:
38
modules/Reports/actions/DeleteAjax.php
Normal file
38
modules/Reports/actions/DeleteAjax.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?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 Reports_DeleteAjax_Action extends Vtiger_DeleteAjax_Action {
|
||||
|
||||
public function checkPermission(Vtiger_Request $request) {
|
||||
$moduleName = $request->getModule();
|
||||
$record = $request->get('record');
|
||||
|
||||
$currentUserPrivilegesModel = Users_Privileges_Model::getCurrentUserPrivilegesModel();
|
||||
if(!$currentUserPrivilegesModel->isPermitted($moduleName, 'Delete', $record)) {
|
||||
throw new AppException(vtranslate('LBL_PERMISSION_DENIED'));
|
||||
}
|
||||
}
|
||||
|
||||
public function process(Vtiger_Request $request) {
|
||||
$moduleName = $request->getModule();
|
||||
$recordId = $request->get('record');
|
||||
$response = new Vtiger_Response();
|
||||
|
||||
$recordModel = Reports_Record_Model::getInstanceById($recordId, $moduleName);
|
||||
|
||||
if (!$recordModel->isDefault() && $recordModel->isEditable() && $recordModel->isEditableBySharing()) {
|
||||
$recordModel->delete();
|
||||
$response->setResult(array(vtranslate('LBL_REPORTS_DELETED_SUCCESSFULLY', $parentModule)));
|
||||
} else {
|
||||
$response->setError(vtranslate('LBL_REPORT_DELETE_DENIED', $moduleName));
|
||||
}
|
||||
$response->emit();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user