Bitte zum Testen nur aktuelle Browser verwenden! ILIAS unterstützt alle aktuellen Browser wie z.B. Firefox, Safari, Microsoft Edge, Chrome und Chromium. Der von Micosoft nicht mehr unterstützte und weiterentwickelte 'Internet Explorer' kann nicht zum Testen von ILIAS 7 verwendet werden.
Testers are the best!

Documentation

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

Descriptive

Description

Purpose
Descriptive Lists are used to display key-value doubles of textual-information.
Composition
Descriptive Lists are composed of a key acting as title describing the type of information being displayed underneath.

Example 1: Base

Title 1
Description 1
Title 2
Description 2
Title 3
Description 3
 
function base()
{
    //Init Factory and Renderer
    global $DIC;
    $f = $DIC->ui()->factory();
    $renderer = $DIC->ui()->renderer();
 
    //Generate List
    $descriptive = $f->listing()->descriptive(
        [
            "Title 1" => "Description 1",
            "Title 2" => "Description 2",
            "Title 3" => "Description 3"]
    );
 
    //Render
    return $renderer->render($descriptive);
}
 

Relations

Parents
  1. UIComponent
  2. Listing