forked from ILIAS-eLearning/ILIAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gs_content.php
46 lines (36 loc) · 1.5 KB
/
gs_content.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace ILIAS\GlobalScreen\Client;
require_once('./libs/composer/vendor/autoload.php');
use ILIAS\GlobalScreen\Scope\MainMenu\Collector\Renderer\Hasher;
use ILIAS\GlobalScreen\Scope\MainMenu\Factory\Item\Lost;
class ContentRenderer
{
use Hasher;
public function run()
{
\ilContext::init(\ilContext::CONTEXT_WAC);
\ilInitialisation::initILIAS();
global $DIC;
$GS = $DIC->globalScreen();
$GS->collector()->mainmenu()->collectStructure();
$GS->collector()->mainmenu()->filterItemsByVisibilty(true);
$GS->collector()->mainmenu()->prepareItemsForUIRepresentation();
$unhash = $this->unhash($_GET['item']);
$identification = $GS->identification()->fromSerializedIdentification($unhash);
$item = $GS->collector()->mainmenu()->getSingleItemFromFilter($identification);
if ($item instanceof Lost) {
$f = $DIC->ui()->factory();
$component = $f->button()->bulky(
$f->symbol()->glyph()->login(),
$DIC->language()->txt('login'),
'login.php?client_id=' . rawurlencode(CLIENT_ID) . '&cmd=force_login&lang=' . $DIC->user()->getCurrentLanguage()
);
} else {
$component = $item->getTypeInformation()->getRenderer()->getComponentForItem($item, true);
}
echo $DIC->ui()->renderer()->renderAsync($component);
}
}
if (php_sapi_name() !== 'cli') {
(new ContentRenderer())->run();
}