| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace ThurData\Servers\KerioEmail\Core\UI\Widget\Forms\Fields;
- /**
- * BaseField controler
- *
- * @autor ThurData <info@thurdata.ch>
- */
- class Textarea extends BaseField
- {
- protected $id = 'textarea';
- protected $name = 'textarea';
-
- protected $textAreaRows;
- protected $textAreaCols;
- public function isRows()
- {
- return isset($this->textAreaRows);
- }
-
- public function isCols()
- {
- return isset($this->textAreaCols);
- }
-
- public function setRows($rows)
- {
- $this->textAreaRows = (int)$rows;
-
- return $this;
- }
-
- public function setCols($cols)
- {
- $this->textAreaCols = (int)$cols;
-
- return $this;
- }
-
- public function getRows()
- {
- return $this->textAreaRows;
- }
-
- public function getCols()
- {
- return $this->textAreaCols;
- }
- }
|