ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
class.ilClientCreationWorkflow.php
Go to the documentation of this file.
1<?php
2/* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4include_once("./setup/classes/class.ilDatabaseSelectionWS.php");
5include_once("./setup/classes/class.ilBasicDataWS.php");
6include_once("./setup/classes/class.ilInstallDBWS.php");
7include_once("./setup/classes/class.ilContactWS.php");
8include_once("./setup/classes/class.ilRegisterWS.php");
9include_once("./setup/classes/class.ilFinishSetupWS.php");
10include_once("./Services/Workflow/classes/class.ilWorkflow.php");
11
20{
24 function __construct($a_setup)
25 {
26 $ws = new ilDatabaseSelectionWS($a_setup);
27 $this->addStep($ws);
28 $ws = new ilBasicDataWS($a_setup);
29 $this->addStep($ws);
30 $ws = new ilInstallDBWS($a_setup);
31 $this->addStep($ws);
32 $ws = new ilInstallLanguagesWS($a_setup);
33 $this->addStep($ws);
34 $ws = new ilContactWS($a_setup);
35 $this->addStep($ws);
36 $ws = new ilRegisterWS($a_setup);
37 $this->addStep($ws);
38 $ws = new ilFinishSetupWS($a_setup);
39 $this->addStep($ws);
40 }
41}
42
43?>
Database selection workflow step.
Workflow for the creation of a new client.
Database selection workflow step.
Database selection workflow step.