function Dropbutton::render

Same name and namespace in other branches
  1. 8.9.x core/modules/views/src/Plugin/views/field/Dropbutton.php \Drupal\views\Plugin\views\field\Dropbutton::render()
  2. 10 core/modules/views/src/Plugin/views/field/Dropbutton.php \Drupal\views\Plugin\views\field\Dropbutton::render()
  3. 11.x core/modules/views/src/Plugin/views/field/Dropbutton.php \Drupal\views\Plugin\views\field\Dropbutton::render()

Overrides FieldPluginBase::render

File

core/modules/views/src/Plugin/views/field/Dropbutton.php, line 19

Class

Dropbutton
Provides a handler that renders links as dropbutton.

Namespace

Drupal\views\Plugin\views\field

Code

public function render(ResultRow $values) {
    $links = $this->getLinks();
    if (!empty($links)) {
        return [
            '#type' => 'dropbutton',
            '#links' => $links,
        ];
    }
    else {
        return '';
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.