Contao\TextField::__construct PHP Метод

__construct() публичный Метод

Disable the for attribute if the "multiple" option is set
public __construct ( array $arrAttributes = null )
$arrAttributes array
    public function __construct($arrAttributes = null)
    {
        parent::__construct($arrAttributes);
        if ($this->multiple) {
            $this->blnForAttribute = false;
        }
    }