mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
17 lines
277 B
PHP
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();
|
|
}
|
|
} |