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'

Bulletlist

Description

Purpose
The Bullet List Glyph is used to indicate the possibility to group related content together and organize vertically, when you don’t need to convey a specific order for list items.
Composition
The Bullet List Glyph uses the glyphicon-listbullet.
Effect
Clicking this glyph will group a list of entries with bullet points.
Context
  1. The Bullet List Glyph appears in the ILIAS Page Editor.

Rivals

Numbered List Glyph
The Numbered Glyph will group a list of entries with enumeration number.

Rules

Accessibility
  1. The aria-label MUST be 'Bullet Point List'.

Example 1: Bulletlist

Active
Inactive
Highlighted
<?php
 
declare(strict_types=1);
 
namespace ILIAS\UI\examples\Symbol\Glyph\Bulletlist;
 
function bulletlist()
{
    global $DIC;
    $f = $DIC->ui()->factory();
    $renderer = $DIC->ui()->renderer();
 
    $glyph = $f->symbol()->glyph()->bulletlist("#");
 
    //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