silverstripe-framework/forms/TextField.php

45 lines
1.0 KiB
PHP
Raw Normal View History

<?php
/**
* @package forms
* @subpackage fields-basic
*/
/**
* Text input field.
* @package forms
* @subpackage fields-basic
*/
class TextField extends FormField {
protected $maxLength;
/**
* Returns an input field, class="text" and type="text" with an optional maxlength
*/
function __construct($name, $title = null, $value = "", $maxLength = null, $form = null){
$this->maxLength = $maxLength;
parent::__construct($name, $title, $value, $form);
}
function Field() {
$attributes = array(
'type' => 'text',
'class' => $this->extraClass() . " maxlength",
'id' => $this->id(),
'name' => $this->attrName(),
'value' => $this->attrValue(),
'tabindex' => $this->getTabIndex(),
'maxlength' => ($this->maxLength) ? $this->maxLength : null,
'size' => ($this->maxLength) ? min( $this->maxLength, 30 ) : 30
);
return $this->createTag('input', $attributes);
}
function InternallyLabelledField() {
if(!$this->value) $this->value = $this->Title();
return $this->Field();
}
}
?>