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

26 lines
477 B
PHP
Executable File

<?php
/**
* It exends the Widget class to represent an HTML textarea
*/
class TextfieldWidget extends HTMLWidget
{
const VALUE = 'text'; // Text value
const SIZE = 'size'; // Size attribute
/**
* Set the text value
*/
protected function setValue($value)
{
$this->_args[TextfieldWidget::VALUE] = $value;
}
/**
* Loads the view that renders an input text
*/
protected function loadTextfieldView()
{
$this->view('widgets/textfield', $this->_args);
}
}