Contao\TextField::__construct PHP Method

__construct() public method

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;
        }
    }