TbHtml::inputHelp PHP Méthode

inputHelp() protected static méthode

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