ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 2015 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4 
5 namespace ILIAS\UI;
6 
7 use \ILIAS\UI\Component as C;
8 
17 interface Factory
18 {
19 
46  public function counter();
47 
70  public function image();
71 
90  public function divider();
91 
132  public function link();
133 
134 
204  public function button();
205 
285  public function dropdown();
286 
320  public function breadcrumbs(array $crumbs);
321 
333  public function viewControl();
334 
349  public function chart();
350 
366  public function input();
367 
402  public function card();
403 
429  public function deck(array $cards);
430 
447  public function listing();
448 
466  public function panel();
467 
495  public function item();
496 
530  public function modal();
531 
595  public function popover();
596 
615  public function dropzone();
616 
636  public function legacy($content);
637 
647  public function table();
648 
676  public function messageBox();
677 
695  public function layout() : C\Layout\Factory;
696 
719  public function mainControls() : C\MainControls\Factory;
720 
749  public function tree();
750 
760  public function menu() : Component\Menu\Factory;
761 
772  public function symbol() : Component\Symbol\Factory;
773 }
mainControls()
description: purpose: > Main Controls are components that are always usable, depending only on overa...
modal()
description: purpose: The Modal forces users to focus on the task at hand.
dropdown()
description: purpose: > Dropdowns reveal a list of interactions that change the system’s status or ...
dropzone()
description: purpose: > Dropzones are containers used to drop either files or other HTML elements...
panel()
description: purpose: > Panels are used to group titled content.
link()
description: purpose: > Links are used navigate to other resources or views of the system by clickin...
breadcrumbs(array $crumbs)
description: purpose: > Breadcrumbs is a supplemental navigation scheme.
menu()
description: purpose: > Menus let the user choose from several (navigational) options.
counter()
description: purpose: > Counter inform users about the quantity of items indicated by a glyph...
card()
description: purpose: > A card is a flexible content container for small chunks of structured data...
deck(array $cards)
description: purpose: > Decks are used to display multiple Cards in a grid.
input()
description: purpose: > In opposite to components with a purely receptive or at most navigational ch...
symbol()
description: purpose: > Symbols are graphical representations of concepts or contexts quickly compre...
tree()
description: purpose: > Trees present hierarchically structured data.
listing()
description: purpose: > Listings are used to structure itemised textual information.
popover()
description: purpose: > Popovers can be used when space is scarce i.e.
layout()
description: purpose: > Layout components are compontents used for the overall construction of the u...
table()
description: purpose: > Tables present a set of uniformly structured data.
image()
description: purpose: The Image component is used to display images of various sources.
viewControl()
description: purpose: > View Controls switch between different visualisation of data.
This is how the factory for UI elements looks.
Definition: Factory.php:17
divider()
description: purpose: > A divider marks a thematic change in a sequence of other components...
legacy($content)
description: purpose: > This component is used to wrap an existing ILIAS UI element into a UI compon...
item()
description: purpose: > An item displays a unique entity within the system.
messageBox()
description: purpose: > Message Boxes inform the user about the state of the system or an ongoing us...
button()
description: purpose: > Buttons trigger interactions that change the system’s or view&#39;s status...
chart()
description: purpose: > Charts are used to graphically represent data in various forms such as maps...