ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
semantic_groups.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
39{
40 global $DIC;
41 $f = $DIC->ui()->factory();
42 $renderer = $DIC->ui()->renderer();
43
44 $entity = $f->entity()->standard('Primary Identifier', 'Secondary Identifier')
45 ->withBlockingAvailabilityConditions($f->legacy()->content('Blocking Conditions'))
46 ->withFeaturedProperties($f->legacy()->content('Featured_properties'))
47 ->withPersonalStatus($f->legacy()->content('Personal Status'))
48 ->withMainDetails($f->legacy()->content('Main Details'))
49 ->withAvailability($f->legacy()->content('Availability'))
50 ->withDetails($f->legacy()->content('Details'))
51 ->withReactions($f->button()->tag('reaction', '#'))
52 ->withPrioritizedReactions($f->symbol()->glyph()->like())
53 ->withActions($f->button()->shy('action', '#'))
54 ;
55
56 return $renderer->render($entity);
57}
$renderer
global $DIC
Definition: shib_login.php:26