ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
dragHandle.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
6 
25 function dragHandle()
26 {
27  global $DIC;
28  $f = $DIC->ui()->factory();
29  $renderer = $DIC->ui()->renderer();
30 
31  $glyph = $f->symbol()->glyph()->dragHandle("#");
32 
33  //Showcase the various states of this Glyph
34  $list = $f->listing()->descriptive([
35  "Active" => $glyph,
36  "Inactive" => $glyph->withUnavailableAction(),
37  "Highlighted" => $glyph->withHighlight()
38  ]);
39 
40  return $renderer->render($list);
41 }
$renderer
global $DIC
Definition: shib_login.php:22
dragHandle()
description: > Example for rendering a Drag Handle Glyph.
Definition: dragHandle.php:25