Searched refs:SIDE_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]) 295 ModuleBlockInterface::SIDE_BLOCKS => $side_block_ids, 334 … ->whereIn('location', [ModuleBlockInterface::MAIN_BLOCKS, ModuleBlockInterface::SIDE_BLOCKS]) 352 ModuleBlockInterface::SIDE_BLOCKS => $side_block_ids,
|
/webtrees/app/Module/ |
H A D | ModuleBlockInterface.php | 37 public const string SIDE_BLOCKS = 'side'; 46 self::SIDE_BLOCKS => [ 60 self::SIDE_BLOCKS => [
|
/webtrees/app/Http/RequestHandlers/ |
H A D | TreePageUpdate.php | 65 …cks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::SIDE_BLOCKS) 69 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::SIDE_BLOCKS));
|
H A D | UserPageUpdate.php | 67 ->userBlocks($default_tree, $user, ModuleBlockInterface::SIDE_BLOCKS) 71 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::SIDE_BLOCKS));
|
H A D | UserPageDefaultUpdate.php | 56 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::SIDE_BLOCKS));
|
H A D | TreePageDefaultUpdate.php | 56 …blocks = new Collection(Validator::parsedBody($request)->array(ModuleBlockInterface::SIDE_BLOCKS));
|
H A D | TreePageEdit.php | 61 …ide_blocks = $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCKS);
|
H A D | UserPageDefaultEdit.php | 66 …is->home_page_service->userBlocks($default_tree, $default_user, ModuleBlockInterface::SIDE_BLOCKS);
|
H A D | TreePageDefaultEdit.php | 66 …is->home_page_service->treeBlocks($default_tree, $default_user, ModuleBlockInterface::SIDE_BLOCKS);
|
H A D | UserPageEdit.php | 60 …ide_blocks = $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCKS);
|
H A D | TreePage.php | 83 …cks' => $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCKS),
|
H A D | UserPage.php | 82 …e_blocks' => $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCKS),
|