Nette\Forms\Controls\TextBase::getRenderedValue PHP Method

getRenderedValue() protected method

protected getRenderedValue ( ) : string | null
return string | null
    protected function getRenderedValue()
    {
        return $this->rawValue === '' ? $this->emptyValue === '' ? NULL : $this->translate($this->emptyValue) : $this->rawValue;
    }