mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-02 20:59:28 +00:00
26 lines
396 B
PHP
26 lines
396 B
PHP
<?php
|
|
|
|
/**
|
|
* It exends the TextareaWidget class to represent an HTML textarea
|
|
*/
|
|
class TextareaWidgetUDF extends TextareaWidget
|
|
{
|
|
/**
|
|
* NOTE: echo $this->content() is needed
|
|
*/
|
|
public function render($parameters)
|
|
{
|
|
if ($parameters != null)
|
|
{
|
|
$this->setText($parameters);
|
|
}
|
|
else
|
|
{
|
|
$this->setText('');
|
|
}
|
|
|
|
$this->loadTextareaView();
|
|
|
|
echo $this->content();
|
|
}
|
|
} |