TbHtml::addPullClass PHP 메소드

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

Adds the pull class to the given options is applicable.
protected static addPullClass ( array &$htmlOptions )
$htmlOptions array the HTML attributes.
    protected static function addPullClass(&$htmlOptions)
    {
        $pull = TbArray::popValue('pull', $htmlOptions);
        if (!empty($pull)) {
            self::addCssClass('pull-' . $pull, $htmlOptions);
        }
    }
TbHtml