TbHtml::inputHelp PHP Method

inputHelp() protected static method

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.
return string the generated help text.
    protected static function inputHelp($help, $htmlOptions)
    {
        $htmlOptions['type'] = self::HELP_TYPE_INLINE;
        return self::help($help, $htmlOptions);
    }
TbHtml