PATH:
home
/
letacommog
/
crmleta
/
modules
/
Settings
/
CronTasks
/
actions
<?php /*+********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.1 * ("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_CronTasks_UpdateSequence_Action extends Settings_Vtiger_Index_Action { public function process(Vtiger_Request $request) { $qualifiedModuleName = $request->getModule(false); $sequencesList = $request->get('sequencesList'); $moduleModel = Settings_CronTasks_Module_Model::getInstance($qualifiedModuleName); $response = new Vtiger_Response(); if ($sequencesList) { $moduleModel->updateSequence($sequencesList); $response->setResult(array(true)); } else { $response->setError(); } $response->emit(); } }
[+]
..
[-] SaveAjax.php
[edit]
[-] UpdateSequence.php
[edit]