ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
repository.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
3 
11 global $ilCtrl, $ilBench;
12 
13 require_once "include/inc.header.php";
14 include_once "./Services/Repository/classes/class.ilRepositoryGUI.php";
15 
16 $ilCtrl->setTargetScript("repository.php");
17 
18 $ilBench->start("Core", "getCallStructure");
19 $ilCtrl->getCallStructure("ilrepositorygui");
20 $ilBench->stop("Core", "getCallStructure");
21 
23 //$repository_gui->prepareOutput();
24 //$repository_gui->executeCommand();
25 $ilCtrl->forwardCommand($repository_gui);
26 
27 $ilBench->save();
28 
29 ?>