mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 12:49:27 +00:00
26 lines
404 B
PHP
26 lines
404 B
PHP
<?php
|
|
|
|
/**
|
|
* It exends the TextfieldWidget class to represent an HTML input text
|
|
*/
|
|
class TextfieldWidgetUDF extends TextfieldWidget
|
|
{
|
|
/**
|
|
* NOTE: echo $this->content() is needed
|
|
*/
|
|
public function render($parameters)
|
|
{
|
|
if ($parameters != null)
|
|
{
|
|
$this->setValue($parameters);
|
|
}
|
|
else
|
|
{
|
|
$this->setValue('');
|
|
}
|
|
|
|
$this->loadTextfieldView();
|
|
|
|
echo $this->content();
|
|
}
|
|
} |