Lines Matching refs:block_id
88 * @param int $block_id
94 public function getBlock(Tree $tree, int $block_id, string $context, array $config = []): string argument
96 … $show_other = $this->getBlockSetting($block_id, 'show_other', self::DEFAULT_SHOW_OTHER);
97 …$show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', self::DEFAULT_SHOW_UNASSIG…
98 … $show_future = $this->getBlockSetting($block_id, 'show_future', self::DEFAULT_SHOW_FUTURE);
140 'id' => $block_id,
141 'config_url' => $this->configUrl($tree, $context, $block_id),
245 * @param int $block_id
249 public function saveBlockConfiguration(ServerRequestInterface $request, int $block_id): void argument
255 $this->setBlockSetting($block_id, 'show_other', (string) $show_other);
256 $this->setBlockSetting($block_id, 'show_unassigned', (string) $show_unassigned);
257 $this->setBlockSetting($block_id, 'show_future', (string) $show_future);
264 * @param int $block_id
268 public function editBlockConfiguration(Tree $tree, int $block_id): string argument
270 … $show_other = $this->getBlockSetting($block_id, 'show_other', self::DEFAULT_SHOW_OTHER);
271 …$show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', self::DEFAULT_SHOW_UNASSIG…
272 … $show_future = $this->getBlockSetting($block_id, 'show_future', self::DEFAULT_SHOW_FUTURE);