TbHtml::getAddOnClasses PHP 메소드

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

Returns the add-on classes based on the given options.
protected static getAddOnClasses ( array $htmlOptions ) : string
$htmlOptions array the options.
리턴 string the classes.
    protected static function getAddOnClasses($htmlOptions)
    {
        return TbArray::getValue('append', $htmlOptions, false) || TbArray::getValue('prepend', $htmlOptions, false) ? 'input-group' : '';
    }
TbHtml