mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-26 16:18:47 +00:00
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
|
|
require_once("VTWorkflowApplication.inc");
|
|
require_once("VTTaskManager.inc");
|
|
require_once('VTWorkflowUtils.php');
|
|
|
|
function vtDeleteWorkflow($adb, $request){
|
|
$util = new VTWorkflowUtils();
|
|
$module = new VTWorkflowApplication("deltetask");
|
|
$mod = return_module_language($current_language, $module->name);
|
|
|
|
if(!$util->checkAdminAccess()){
|
|
$errorUrl = $module->errorPageUrl($mod['LBL_ERROR_NOT_ADMIN']);
|
|
$util->redirectTo($errorUrl, $mod['LBL_ERROR_NOT_ADMIN']);
|
|
return;
|
|
}
|
|
|
|
$wm = new VTTaskManager($adb);
|
|
$wm->deleteTask($request['task_id']);
|
|
|
|
if(isset($request["return_url"])){
|
|
$returnUrl=$request["return_url"];
|
|
}else{
|
|
$returnUrl=$module->editWorkflowUrl($wf->id);
|
|
}
|
|
|
|
// crmv@77249
|
|
if ($_REQUEST['included'] == true) {
|
|
$params = array(
|
|
'included' => 'true',
|
|
'skip_vte_header' => 'true',
|
|
'skip_footer' => 'true',
|
|
'formodule' => $_REQUEST['formodule']
|
|
);
|
|
$returnUrl .= "&".http_build_query($params);
|
|
}
|
|
// crmv@77249e
|
|
|
|
?>
|
|
<script type="text/javascript" charset="utf-8">
|
|
window.location="<?php echo "$returnUrl" ?>";
|
|
</script>
|
|
<a href="<?php echo "$returnUrl" ?>">Return</a>
|
|
<?php
|
|
}
|
|
vtDeleteWorkflow($adb, $_REQUEST);
|
|
?>
|