%PDF- %PDF-
Direktori : /www/old2/_music/diplomka/diplomka/src/API/libs/Nette/Forms/Controls/ |
Current File : /www/old2/_music/diplomka/diplomka/src/API/libs/Nette/Forms/Controls/TextInput.php |
<?php /** * This file is part of the Nette Framework (http://nette.org) * * Copyright (c) 2004 David Grudl (http://davidgrudl.com) * * For the full copyright and license information, please view * the file license.txt that was distributed with this source code. */ namespace Nette\Forms\Controls; use Nette; /** * Single line text input control. * * @author David Grudl * @property-write $type */ class TextInput extends TextBase { /** * @param string control name * @param string label * @param int width of the control * @param int maximum number of characters the user may enter */ public function __construct($label = NULL, $cols = NULL, $maxLength = NULL) { parent::__construct($label); $this->control->type = 'text'; $this->control->size = $cols; $this->control->maxlength = $maxLength; $this->addFilter($this->sanitize); $this->value = ''; } /** * Filter: removes unnecessary whitespace and shortens value to control's max length. * @return string */ public function sanitize($value) { if ($this->control->maxlength && Nette\Utils\Strings::length($value) > $this->control->maxlength) { $value = Nette\Utils\Strings::substring($value, 0, $this->control->maxlength); } return Nette\Utils\Strings::trim(strtr($value, "\r\n", ' ')); } /** * Changes control's type attribute. * @param string * @return BaseControl provides a fluent interface */ public function setType($type) { $this->control->type = $type; return $this; } /** @deprecated */ public function setPasswordMode($mode = TRUE) { $this->control->type = $mode ? 'password' : 'text'; return $this; } /** * Generates control's HTML element. * @return Nette\Utils\Html */ public function getControl() { $control = parent::getControl(); foreach ($this->getRules() as $rule) { if ($rule->isNegative || $rule->type !== Nette\Forms\Rule::VALIDATOR) { } elseif ($rule->operation === Nette\Forms\Form::RANGE && $control->type !== 'text') { list($control->min, $control->max) = $rule->arg; } elseif ($rule->operation === Nette\Forms\Form::PATTERN) { $control->pattern = $rule->arg; } } if ($control->type !== 'password') { $control->value = $this->getValue() === '' ? $this->translate($this->emptyValue) : $this->value; } return $control; } }