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'

Vertical

Description

Purpose
A Vertical Divider is used to mark a thematic or functional change in a sequence of elements that are stacked from left to right.
Composition
Vertical Dividers consists of a glyph-like character.

Rules

Usage
  1. Vertical Dividers MUST only be used in container components that render a sequence of items from left to right.
Ordering
  1. Vertical Dividers MUST always have a succeeding element in a sequence of elments, which MUST NOT be another Vertical Divider.

Example 1: Base

Some contentMore content
<?php
 
declare(strict_types=1);
 
namespace ILIAS\UI\examples\Divider\Vertical;
 
function base()
{
    global $DIC;
    $f = $DIC->ui()->factory();
    $renderer = $DIC->ui()->renderer();
 
    return $renderer->render(array($f->legacy("Some content"),
        $f->divider()->vertical(),
        $f->legacy("More content")));
}
 

Relations

Parents
  1. UIComponent
  2. Divider