40 lines
1.6 KiB
PHP
40 lines
1.6 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_SaveAjax_Action extends Vtiger_SaveAjax_Action {
|
|
|
|
public function checkPermission(Vtiger_Request $request) {
|
|
$moduleName = $request->getModule();
|
|
$record = $request->get('record');
|
|
|
|
$actionName = ($record) ? 'EditView' : 'CreateView';
|
|
if(!Users_Privileges_Model::isPermitted($moduleName, $actionName, $record)) {
|
|
throw new AppException(vtranslate('LBL_PERMISSION_DENIED'));
|
|
}
|
|
|
|
if(!Users_Privileges_Model::isPermitted($moduleName, 'Save', $record)) {
|
|
throw new AppException(vtranslate('LBL_PERMISSION_DENIED'));
|
|
}
|
|
}
|
|
|
|
public function process(Vtiger_Request $request) {
|
|
$module = $request->getModule();
|
|
$recordId = $request->get('record');
|
|
$bookmarkName = $request->get('bookmarkName');
|
|
$bookmarkUrl = $request->get('bookmarkUrl');
|
|
|
|
Portal_Module_Model::saveRecord($recordId, $bookmarkName, $bookmarkUrl);
|
|
|
|
$response = new Vtiger_Response();
|
|
$result = array('message' => vtranslate('LBL_BOOKMARK_SAVED_SUCCESSFULLY', $module));
|
|
$response->setResult($result);
|
|
$response->emit();
|
|
}
|
|
} |