silverstripe-framework/forms/TextareaField.php

128 lines
1.9 KiB
PHP
Raw Normal View History

<?php
2015-04-27 05:15:32 +02:00
/**
* TextareaField creates a multi-line text field,
* allowing more data to be entered than a standard
* text field. It creates the <textarea> tag in the
* form HTML.
2014-08-15 08:53:05 +02:00
*
* <code>
* new TextareaField(
* $name = "description",
* $title = "Description",
* $value = "This is the default description"
* );
* </code>
2014-08-15 08:53:05 +02:00
*
* @package forms
* @subpackage fields-basic
*/
class TextareaField extends FormField {
/**
* Value should be XML
*
* @var array
*/
private static $casting = array(
'Value' => 'Text',
'ValueEntities' => 'HTMLFragment',
);
/**
2015-04-27 05:15:32 +02:00
* Visible number of text lines.
*
* @var int
*/
protected $rows = 5;
/**
2015-04-27 05:15:32 +02:00
* Visible number of text columns.
*
* @var int
*/
protected $cols = 20;
/**
* Set the number of rows in the textarea
*
2015-04-27 05:15:32 +02:00
* @param int $rows
*
* @return $this
*/
public function setRows($rows) {
$this->rows = $rows;
2015-04-27 05:15:32 +02:00
return $this;
}
2015-04-27 05:15:32 +02:00
/**
* Gets number of rows
*
* @return int
*/
public function getRows() {
return $this->rows;
}
/**
* Set the number of columns in the textarea
*
2015-04-27 05:15:32 +02:00
* @param int $cols
*
* @return $this
*/
public function setColumns($cols) {
$this->cols = $cols;
2015-04-27 05:15:32 +02:00
return $this;
}
/**
* Gets the number of columns in this textarea
*
* @return int
*/
public function getColumns() {
return $this->cols;
}
2015-04-27 05:15:32 +02:00
/**
* {@inheritdoc}
*/
public function getAttributes() {
return array_merge(
parent::getAttributes(),
array(
'rows' => $this->getRows(),
'cols' => $this->getColumns(),
'value' => null,
'type' => null
)
);
}
2014-08-15 08:53:05 +02:00
/**
2015-04-27 05:15:32 +02:00
* {@inheritdoc}
*/
2015-04-27 05:15:32 +02:00
public function Type() {
$parent = parent::Type();
if($this->readonly) {
return $parent . ' readonly';
}
return $parent;
}
2014-08-15 08:53:05 +02:00
/**
* Return value with all values encoded in html entities
*
* @return string Raw HTML
*/
public function ValueEntities() {
return htmlentities($this->Value(), ENT_COMPAT, 'UTF-8');
}
}