function MoreLink::getInfo
Overrides Link::getInfo
File
- 
              core/
lib/ Drupal/ Core/ Render/ Element/ MoreLink.php, line 29  
Class
- MoreLink
 - Provides a link render element for a "more" link, like those used in blocks.
 
Namespace
Drupal\Core\Render\ElementCode
public function getInfo() {
  $info = parent::getInfo();
  return [
    '#title' => $this->t('More'),
    '#theme_wrappers' => [
      'container' => [
        '#attributes' => [
          'class' => [
            'more-link',
          ],
        ],
      ],
    ],
  ] + $info;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.