ILIAS  trunk Revision v11.0_alpha-1744-gb0451eebef4
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Factory.php
Go to the documentation of this file.
1 <?php
2 
20 
24 
31 interface Factory
32 {
70  public function standard(
71  string $title,
72  string $message,
73  string $post_url,
74  FileInput $file_input,
75  ?FormInput $additional_input = null,
76  ): Standard;
77 
120  public function wrapper(
121  string $title,
122  string $post_url,
123  $content,
124  FileInput $file_input,
125  ?FormInput $additional_input = null,
126  ): Wrapper;
127 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
wrapper(string $title, string $post_url, $content, FileInput $file_input, ?FormInput $additional_input=null,)
description: purpose: > A wrapper dropzone is used to display other ILIAS UI components inside it...
A wrapper file dropzone wraps around any other component from the UI framework, e.g.
Definition: Wrapper.php:31
Describes a factory for file dropzones.
Definition: Factory.php:31
standard(string $title, string $message, string $post_url, FileInput $file_input, ?FormInput $additional_input=null,)
description: purpose: > The standard dropzone is used to drop files dragged from outside the browser...
A standard file dropzone offers the possibility to upload dropped files to the server.
Definition: Standard.php:28
$message
Definition: xapiexit.php:31
This describes inputs that can be used in forms.
Definition: FormInput.php:32
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:19