mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d52db0ba34
# Conflicts: # .travis.yml # admin/css/ie7.css # admin/css/ie7.css.map # admin/css/ie8.css.map # admin/css/screen.css # admin/css/screen.css.map # admin/javascript/LeftAndMain.js # admin/scss/_style.scss # admin/scss/_uitheme.scss # control/HTTPRequest.php # core/Object.php # css/AssetUploadField.css # css/AssetUploadField.css.map # css/ConfirmedPasswordField.css.map # css/Form.css.map # css/GridField.css.map # css/TreeDropdownField.css.map # css/UploadField.css # css/UploadField.css.map # css/debug.css.map # dev/Debug.php # docs/en/00_Getting_Started/00_Server_Requirements.md # docs/en/02_Developer_Guides/06_Testing/00_Unit_Testing.md # docs/en/02_Developer_Guides/06_Testing/index.md # docs/en/02_Developer_Guides/14_Files/02_Images.md # docs/en/02_Developer_Guides/15_Customising_the_Admin_Interface/How_Tos/Extend_CMS_Interface.md # filesystem/File.php # filesystem/Folder.php # filesystem/GD.php # filesystem/Upload.php # forms/ToggleField.php # forms/Validator.php # javascript/lang/en_GB.js # javascript/lang/fr.js # javascript/lang/src/en.js # javascript/lang/src/fr.js # model/Image.php # model/UnsavedRelationList.php # model/Versioned.php # model/connect/MySQLDatabase.php # model/fieldtypes/DBField.php # model/fieldtypes/Enum.php # scss/AssetUploadField.scss # scss/UploadField.scss # templates/email/ChangePasswordEmail.ss # templates/forms/DropdownField.ss # tests/behat/features/bootstrap/SilverStripe/Framework/Test/Behaviour/CmsFormsContext.php # tests/behat/features/bootstrap/SilverStripe/Framework/Test/Behaviour/CmsUiContext.php # tests/forms/EnumFieldTest.php # tests/security/MemberTest.php # tests/security/MemberTest.yml # tests/security/SecurityTest.php
111 lines
1.9 KiB
PHP
111 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Text input field.
|
|
*
|
|
* @package forms
|
|
* @subpackage fields-basic
|
|
*/
|
|
class TextField extends FormField {
|
|
/**
|
|
* @var int
|
|
*/
|
|
protected $maxLength;
|
|
|
|
protected $schemaDataType = FormField::SCHEMA_DATA_TYPE_TEXT;
|
|
|
|
/**
|
|
* Returns an input field.
|
|
*
|
|
* @param string $name
|
|
* @param null|string $title
|
|
* @param string $value
|
|
* @param null|int $maxLength
|
|
* @param null|Form $form
|
|
*/
|
|
public function __construct($name, $title = null, $value = '', $maxLength = null, $form = null) {
|
|
if($maxLength) {
|
|
$this->setMaxLength($maxLength);
|
|
}
|
|
|
|
if($form) {
|
|
$this->setForm($form);
|
|
}
|
|
|
|
parent::__construct($name, $title, $value);
|
|
}
|
|
|
|
/**
|
|
* @param int $maxLength
|
|
*
|
|
* @return static
|
|
*/
|
|
public function setMaxLength($maxLength) {
|
|
$this->maxLength = $maxLength;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return null|int
|
|
*/
|
|
public function getMaxLength() {
|
|
return $this->maxLength;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getAttributes() {
|
|
$maxLength = $this->getMaxLength();
|
|
|
|
$attributes = array();
|
|
|
|
if($maxLength) {
|
|
$attributes['maxLength'] = $maxLength;
|
|
$attributes['size'] = min($maxLength, 30);
|
|
}
|
|
|
|
return array_merge(
|
|
parent::getAttributes(),
|
|
$attributes
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function InternallyLabelledField() {
|
|
Deprecation::notice('4.0', 'Please use ->setValue() instead');
|
|
|
|
if(!$this->value) {
|
|
$this->value = $this->Title();
|
|
}
|
|
|
|
return $this->Field();
|
|
}
|
|
|
|
/**
|
|
* Validate this field
|
|
*
|
|
* @param Validator $validator
|
|
* @return bool
|
|
*/
|
|
public function validate($validator) {
|
|
if(!is_null($this->maxLength) && mb_strlen($this->value) > $this->maxLength) {
|
|
$validator->validationError(
|
|
$this->name,
|
|
_t(
|
|
'TextField.VALIDATEMAXLENGTH',
|
|
'The value for {name} must not exceed {maxLength} characters in length',
|
|
array('name' => $this->getName(), 'maxLength' => $this->maxLength)
|
|
),
|
|
"validation"
|
|
);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
}
|