ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilEmptyWorkflow.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
5require_once './Services/WorkflowEngine/classes/workflows/class.ilBaseWorkflow.php';
6
19{
23 public function __construct()
24 {
25 $this->workflow_type = 'Empty';
26 $this->workflow_content = 'nothing';
27 $this->workflow_subject_type = 'none';
28 $this->workflow_subject_identifier = '0';
29 $this->workflow_context_type = 'none';
30 $this->workflow_context_id = '0';
31 $this->workflow_class = 'class.ilEmptyWorkflow.php';
32 $this->workflow_location = 'Services/WorkflowEngine/classes/workflows';
33 }
34}
An exception for terminatinating execution or to throw for unit testing.
@noinspection PhpIncludeInspection
@noinspection PhpIncludeInspection
__construct()
ilEmptyWorkflow constructor.