ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilDclCheckboxInputGUI.php
Go to the documentation of this file.
1 <?php
2 
9 {
10  public function checkInput()
11  {
12  if ($this->getRequired() && !isset($_POST[$this->getPostVar()])) {
13  global $DIC;
14  $lng = $DIC['lng'];
15  $this->setAlert($lng->txt("msg_input_is_required"));
16 
17  return false;
18  }
19 
20  return parent::checkInput();
21  }
22 }
getPostVar()
Get Post Variable.
This class represents a checkbox property in a property form.
setAlert($a_alert)
Set Alert Text.
$DIC
Definition: xapitoken.php:46
Class ilDclCheckboxInputGUI.
$_POST["username"]