Files
FHC-Core/application/widgets/udf/CheckboxWidgetUDF.php
T
SimonGschnell a21a292da6 dokument upload
2024-01-29 16:48:41 +01:00

17 lines
277 B
PHP
Executable File

<?php
/**
* It exends the CheckboxWidget class to represent an HTML checkbox
*/
class CheckboxWidgetUDF extends CheckboxWidget
{
/**
* NOTE: echo $this->content() is needed
*/
public function render()
{
$this->loadCheckboxView();
echo $this->content();
}
}