実用的なコードスニペットの使用方法hook_block_access()
。ここでは、現在のノードのフィールドから条件を取得します。
use Drupal\block\Entity\Block;
use Drupal\Core\Session\AccountInterface;
use Drupal\node\NodeInterface;
use Drupal\Core\Access\AccessResult;
/**
* Implements hook_block_access().
*/
function MYMODULE_block_access(Block $block, $operation, AccountInterface $account) {
$node = \Drupal::routeMatch()->getParameter('node');
$hero_image_exists = FALSE;
if ($node instanceof NodeInterface) {
if ($node->hasField('field_hero_image')) {
if (!$node->get('field_hero_image')->isEmpty()) {
$hero_image_exists = TRUE;
}
}
}
if ($operation == 'view' && $block->getPluginId() == 'MYBLOCK') {
return AccessResult::forbiddenIf($hero_image_exists == FALSE)->addCacheableDependency($block);
}
return AccessResult::neutral();
}
コメントで以下の宝石を共有してくれて@Insasseに感謝します。プログラムで作成されたカスタムブロックの場合、次を介してブロッククラス内から直接可視性を制御できますblockAccess()
。
class MyBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
return [
'#markup' => $this->t('This is a simple block!'),
];
}
/**
* {@inheritdoc}
*/
protected function blockAccess(AccountInterface $account) {
return AccessResult::allowedIfHasPermission($account, 'access content');
}
}
ソース:プログラムでDrupal 8にブロックを作成する方法