ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
entry_point.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21$info = <<<INFO
22Hello there.
23
24This calls an arbitrary entrypoint of ILIAS for testing purpose. For more informations
25about entrypoints, have a look into `components/ILIAS/Component/src/EntryPoint.php`.
26
27INFO;
28
29if (count($argv) !== 3) {
30 echo $info;
31 die("php cli/entry_point.php \$bootstrap \$name\n");
32}
33
34$bootstrap = $argv[1];
35$entry_point = $argv[2];
36
37require_once(__DIR__ . "/../artifacts/bootstrap_$bootstrap.php");
38
exit
if(count($argv) !==3) $bootstrap
Definition: entry_point.php:34
$entry_point
Definition: entry_point.php:35
$info
Definition: entry_point.php:21
Interface Observer \BackgroundTasks Contains several chained tasks and infos about them.
Class ilChatroomConfigFileHandler \ILIAS\Chatroom\classes.
entry_point(string $name)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: result1.php:21