public function ViewExecutable::getShowAdminLinks in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/ViewExecutable.php \Drupal\views\ViewExecutable::getShowAdminLinks()
 
Returns whether admin links should be rendered on the view.
Return value
bool Returns TRUE if admin links should be rendered, else FALSE.
File
- core/
modules/ views/ src/ ViewExecutable.php, line 2248  - Contains \Drupal\views\ViewExecutable.
 
Class
- ViewExecutable
 - Represents a view as a whole.
 
Namespace
Drupal\viewsCode
public function getShowAdminLinks() {
  if (!isset($this->showAdminLinks)) {
    return $this
      ->getDisplay()
      ->getOption('show_admin_links');
  }
  return $this->showAdminLinks;
}