ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
semantic_groups.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
7 function semantic_groups()
8 {
9  global $DIC;
10  $f = $DIC->ui()->factory();
11  $renderer = $DIC->ui()->renderer();
12 
13  $entity = $f->entity()->standard('Primary Identifier', 'Secondary Identifier')
14  ->withBlockingAvailabilityConditions($f->legacy('Blocking Conditions'))
15  ->withFeaturedProperties($f->legacy('Featured_properties'))
16  ->withPersonalStatus($f->legacy('Personal Status'))
17  ->withMainDetails($f->legacy('Main Details'))
18  ->withAvailability($f->legacy('Availability'))
19  ->withDetails($f->legacy('Details'))
20  ->withReactions($f->button()->tag('reaction', '#'))
21  ->withPrioritizedReactions($f->symbol()->glyph()->like())
22  ->withActions($f->button()->shy('action', '#'))
23  ;
24 
25  return $renderer->render($entity);
26 }
global $DIC
Definition: feed.php:28