TbHtml::inputHelp PHP 메소드

inputHelp() 보호된 정적인 메소드

Generates a help text for an input field.
protected static inputHelp ( string $help, array $htmlOptions ) : string
$help string the help text.
$htmlOptions array additional HTML attributes.
리턴 string the generated help text.
    protected static function inputHelp($help, $htmlOptions)
    {
        $htmlOptions['type'] = self::HELP_TYPE_INLINE;
        return self::help($help, $htmlOptions);
    }
TbHtml