ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
Standard.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
26 interface Standard extends FormWithPostURL
27 {
31  public function withSubmitCaption(string $caption): Standard;
32 
36  public function getSubmitCaption(): ?string;
37 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21
withSubmitCaption(string $caption)
Sets the caption of the submit button of the form.
getSubmitCaption()
Gets submit caption of the form.
This describes a standard form.
Definition: Standard.php:26