function Dropbutton::render
Same name in other branches
- 9 core/modules/views/src/Plugin/views/field/Dropbutton.php \Drupal\views\Plugin\views\field\Dropbutton::render()
- 10 core/modules/views/src/Plugin/views/field/Dropbutton.php \Drupal\views\Plugin\views\field\Dropbutton::render()
- 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\fieldCode
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.