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