ShortcutsBlock.php

Same filename and directory in other branches
  1. 11.x core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php
  2. 10 core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php
  3. 8.9.x core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php

Namespace

Drupal\shortcut\Plugin\Block

File

core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php

View source
<?php

namespace Drupal\shortcut\Plugin\Block;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Block\BlockBase;
use Drupal\Core\Session\AccountInterface;

/**
 * Provides a 'Shortcut' block.
 *
 * @Block(
 *   id = "shortcuts",
 *   admin_label = @Translation("Shortcuts"),
 *   category = @Translation("Menus")
 * )
 */
class ShortcutsBlock extends BlockBase {
  
  /**
   * {@inheritdoc}
   */
  public function build() {
    return [
      shortcut_renderable_links(shortcut_current_displayed_set()),
    ];
  }
  
  /**
   * {@inheritdoc}
   */
  protected function blockAccess(AccountInterface $account) {
    return AccessResult::allowedIfHasPermission($account, 'access shortcuts');
  }

}

Classes

Title Deprecated Summary
ShortcutsBlock Provides a 'Shortcut' block.

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