ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
Standard.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
17 interface Standard extends File
18 {
19 
27  public function withMessage($message);
28 
29 
35  public function getMessage();
36 
37 
44  public function withUploadButton(Button $button);
45 
46 
52  public function getUploadButton();
53 }
getMessage()
Get the message of of this dropzone.
withMessage($message)
Get a dropzone like this, displaying the given message in it.
catch(Exception $e) $message
withUploadButton(Button $button)
Get a dropzone like this, using the given button to upload the files to the server.
getUploadButton()
Get the button to upload the files to the server.
This describes commonalities between standard and primary buttons.
Definition: Button.php:15