ShortcutsBlock.php
Same filename in other branches
Namespace
Drupal\shortcut\Plugin\BlockFile
-
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.