Files
FHC-Core/application/widgets/udf/CheckboxWidgetUDF.php
T
2024-10-17 15:34:00 +02:00

17 lines
277 B
PHP

<?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();
}
}