Files
crm.clientright.ru/modules/Settings/Workflows/actions/SaveAjax.php

36 lines
1.2 KiB
PHP
Executable File

<?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 Settings_Workflows_SaveAjax_Action extends Settings_Vtiger_IndexAjax_View {
public function process(Vtiger_Request $request) {
$record = $request->get('record');
$status = $request->get('status');
if($record){
if($status == 'off')
$status = 0;
else if($status == 'on')
$status = 1;
Settings_Workflows_Record_Model::updateWorkflowStatus($record, $status);
}
$response = new Vtiger_Response();
$response->setResult(array('success'));
$response->emit();
}
public function validateRequest(Vtiger_Request $request) {
$request->validateWriteAccess();
}
}