| 12345678910111213141516171819202122 |
- <?php
- use Drupal\block\Entity\Block;
- $block = Block::load('tools_sidebar');
- if (!$block) {
- echo "BLOCK tools_sidebar NOT FOUND" . PHP_EOL;
- exit;
- }
- // Filedepot/teised menüülingid on anonüümsele 403 — peida menüü autenditud kasutajatele.
- $block->set('visibility', [
- 'user_role' => [
- 'id' => 'user_role',
- 'negate' => TRUE,
- 'context_mapping' => [
- 'user' => '@user.current_user_context:current_user',
- ],
- 'roles' => ['anonymous' => 'anonymous'],
- ],
- ]);
- $block->save();
- echo "tools_sidebar hidden for anonymous" . PHP_EOL;
|