TbHtml::addPullClass PHP Method

addPullClass() protected static method

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