style === 'asc') { $icon = Element::createStandalone(Bootstrap::glyphicon('chevron-down', ['#markup' => $this->t('(asc)')])) ->addClass('icon-after') ->setAttributes([ 'data-toggle' => 'tooltip', 'data-placement' => 'bottom', 'title' => $this->t('Sort ascending'), ]); } else { $icon = Element::createStandalone(Bootstrap::glyphicon('chevron-up', ['#markup' => $this->t('(desc)')])) ->addClass('icon-after') ->setAttributes([ 'data-toggle' => 'tooltip', 'data-placement' => 'bottom', 'title' => $this->t('Sort descending'), ]); } $variables->icon = $icon->getArray(); } }