class ShortcutsBlock

Same name in other branches
  1. 9 core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php \Drupal\shortcut\Plugin\Block\ShortcutsBlock
  2. 10 core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php \Drupal\shortcut\Plugin\Block\ShortcutsBlock
  3. 11.x core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php \Drupal\shortcut\Plugin\Block\ShortcutsBlock

Provides a 'Shortcut' block.

Plugin annotation


@Block(
  id = "shortcuts",
  admin_label = @Translation("Shortcuts"),
  category = @Translation("Menus")
)

Hierarchy

Expanded class hierarchy of ShortcutsBlock

File

core/modules/shortcut/src/Plugin/Block/ShortcutsBlock.php, line 18

Namespace

Drupal\shortcut\Plugin\Block
View source
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');
    }

}

Members

Title Sort descending Modifiers Object type Summary
ShortcutsBlock::blockAccess protected function
ShortcutsBlock::build public function

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