ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
class.ilObjWorkflowEngine.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2016 ILIAS open source, Extended GPL, see docs/LICENSE */
3
14{
21 public function __construct($id = 0, $call_by_reference = true)
22 {
23 $this->type = "wfe";
24 parent::__construct($id, $call_by_reference);
25 }
26
30 public static function getTempDir()
31 {
32 return ILIAS_DATA_DIR . '/' . CLIENT_ID . '/wfe/upload_temp/';
33 }
34
38 public static function getRepositoryDir()
39 {
40 return ILIAS_DATA_DIR . '/' . CLIENT_ID . '/wfe/repository/';
41 }
42}
An exception for terminatinating execution or to throw for unit testing.
Class ilObjWorkflowEngine.
__construct($id=0, $call_by_reference=true)
ilObjWorkflowEngine constructor.
Class ilObject Basic functions for all objects.