32 lines
1.3 KiB
PHP
32 lines
1.3 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 Portal_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) {
|
|
$recordId = $request->get('record');
|
|
$module = $request->getModule();
|
|
Portal_Module_Model::deleteRecord($recordId);
|
|
|
|
$response = new Vtiger_Response();
|
|
$response->setResult(array('message'=> vtranslate('LBL_RECORD_DELETED_SUCCESSFULLY', $module)));
|
|
$response->emit();
|
|
}
|
|
} |