ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
semantic_groups.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
38 function semantic_groups()
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
semantic_groups()
expected output: > This example shows/identifies the semantic groups of entites; from top to bottom...
global $DIC
Definition: shib_login.php:22