Searched refs:MAIN_BLOCKS (Results 1 – 12 of 12) sorted by relevance
/webtrees/app/Services/ |
H A D | HomePageService.php | 197 … foreach ([ModuleBlockInterface::MAIN_BLOCKS, ModuleBlockInterface::SIDE_BLOCKS] as $location) { 247 … foreach ([ModuleBlockInterface::MAIN_BLOCKS, ModuleBlockInterface::SIDE_BLOCKS] as $location) { 277 … ->whereIn('location', [ModuleBlockInterface::MAIN_BLOCKS, ModuleBlockInterface::SIDE_BLOCKS]) 294 ModuleBlockInterface::MAIN_BLOCKS => $main_block_ids, 334 … ->whereIn('location', [ModuleBlockInterface::MAIN_BLOCKS, ModuleBlockInterface::SIDE_BLOCKS]) 351 ModuleBlockInterface::MAIN_BLOCKS => $main_block_ids,
|
/webtrees/app/Module/ |
H A D | ModuleBlockInterface.php | 36 public const MAIN_BLOCKS = 'main'; define 40 self::MAIN_BLOCKS => [ 55 self::MAIN_BLOCKS => [
|
/webtrees/app/Http/RequestHandlers/ |
H A D | TreePageUpdate.php | 63 …cks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::MAIN_BLOCKS) 68 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::MAIN_BLOCKS));
|
H A D | UserPageUpdate.php | 64 ->userBlocks($default_tree, $user, ModuleBlockInterface::MAIN_BLOCKS) 70 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::MAIN_BLOCKS));
|
H A D | UserPageDefaultUpdate.php | 55 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::MAIN_BLOCKS));
|
H A D | TreePageDefaultUpdate.php | 55 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::MAIN_BLOCKS));
|
H A D | TreePageEdit.php | 60 …ain_blocks = $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCKS);
|
H A D | UserPageDefaultEdit.php | 65 …is->home_page_service->userBlocks($default_tree, $default_user, ModuleBlockInterface::MAIN_BLOCKS);
|
H A D | TreePageDefaultEdit.php | 65 …is->home_page_service->treeBlocks($default_tree, $default_user, ModuleBlockInterface::MAIN_BLOCKS);
|
H A D | UserPageEdit.php | 59 …ain_blocks = $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCKS);
|
H A D | TreePage.php | 82 …cks' => $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCKS),
|
H A D | UserPage.php | 81 …n_blocks' => $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCKS),
|