UPDATE-RATE

Die Test-Installation wird aktuell zwischen 8:00 und 18:00 Uhr stündlich zur vollen Stunde aktualisiert.

Alles neu macht der Mai

ILIAS 9 ist da! Alle Infos zu den Highlights der neuen Version gibt es hier!

Documentation

Kitchen Sink documentation of style: 'Delos' of skin: 'ILIAS'

Listindent

Description

Purpose
The Indent Glyph is used to define the gradation of a structured list. It leads to an increased indentation and thus gives the impression of a subordinate level.
Composition
The Indent List Glyph uses the glyphicon-listindent.
Effect
Clicking this glyph will intend the content to the next subordinate level of the list.
Context
  1. The Indent Glyph appears in the ILIAS Page Editor.

Rivals

Outdent Glyph
The Outend Glyph will reduce the indent to the next superordinate level of the list.

Rules

Accessibility
  1. The aria-label MUST be 'Increase Indent'.

Example 1: Listindent

Active
Inactive
Highlighted
<?php
 
declare(strict_types=1);
 
namespace ILIAS\UI\examples\Symbol\Glyph\Listindent;
 
function listindent()
{
    global $DIC;
    $f = $DIC->ui()->factory();
    $renderer = $DIC->ui()->renderer();
 
    $glyph = $f->symbol()->glyph()->listindent("#");
 
    //Showcase the various states of this Glyph
    $list = $f->listing()->descriptive([
        "Active" => $glyph,
        "Inactive" => $glyph->withUnavailableAction(),
        "Highlighted" => $glyph->withHighlight()
    ]);
 
    return $renderer->render($list);
}
 

Relations

Parents
  1. UIComponent
  2. Symbol
  3. Glyph