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

26 lines
396 B
PHP
Executable File

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