mirror of
https://github.com/VTECRM/vtenext.git
synced 2026-02-27 08:38:46 +00:00
15 lines
451 B
PHP
15 lines
451 B
PHP
<?php
|
|
/*************************************
|
|
* SPDX-FileCopyrightText: 2009-2020 Vtenext S.r.l. <info@vtenext.com>
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
************************************/
|
|
class VTDummyTask extends VTTask{
|
|
public $executeImmediately = true;
|
|
|
|
public function getFieldNames(){return array();}
|
|
public function doTask($entity){
|
|
$statement=$this->statement;
|
|
echo "This is a dummy workflow task with $statement";
|
|
}
|
|
}
|
|
?>
|