Form_Field_ValueList::setEmptyText PHP Méthode

setEmptyText() public méthode

Set to "Select.." or "Pick one.."
public setEmptyText ( string $text = null )
$text string Pass null to use default text, empty string - disable
    public function setEmptyText($text = null)
    {
        $this->empty_text = $text === null ? $this->default_empty_text : $text;
        return $this;
    }