Home
last modified time | relevance | path

Searched refs:home_page_service (Results 1 – 16 of 16) sorted by relevance

/webtrees/app/Http/RequestHandlers/
H A DUserPageDefaultEdit.php41 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageDefaultEdit
44 * @param HomePageService $home_page_service
46 public function __construct(HomePageService $home_page_service) argument
48 $this->home_page_service = $home_page_service;
60 $this->home_page_service->checkDefaultUserBlocksExist();
65 …$main_blocks = $this->home_page_service->userBlocks($default_tree, $default_user, ModuleBlockInter…
66 …$side_blocks = $this->home_page_service->userBlocks($default_tree, $default_user, ModuleBlockInter…
67 $all_blocks = $this->home_page_service->availableUserBlocks($default_tree, $default_user);
H A DTreePageDefaultEdit.php41 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageDefaultEdit
44 * @param HomePageService $home_page_service
46 public function __construct(HomePageService $home_page_service) argument
48 $this->home_page_service = $home_page_service;
60 $this->home_page_service->checkDefaultTreeBlocksExist();
65 …$main_blocks = $this->home_page_service->treeBlocks($default_tree, $default_user, ModuleBlockInter…
66 …$side_blocks = $this->home_page_service->treeBlocks($default_tree, $default_user, ModuleBlockInter…
68 $all_blocks = $this->home_page_service->availableTreeBlocks($default_tree, $default_user);
H A DTreePageEdit.php40 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageEdit
43 * @param HomePageService $home_page_service
45 public function __construct(HomePageService $home_page_service) argument
47 $this->home_page_service = $home_page_service;
60 …$main_blocks = $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCK…
61 …$side_blocks = $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCK…
63 $all_blocks = $this->home_page_service->availableTreeBlocks($tree, $user);
H A DUserPageEdit.php40 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageEdit
43 * @param HomePageService $home_page_service
45 public function __construct(HomePageService $home_page_service) argument
47 $this->home_page_service = $home_page_service;
59 …$main_blocks = $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::MAIN_BLOCK…
60 …$side_blocks = $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::SIDE_BLOCK…
61 $all_blocks = $this->home_page_service->availableUserBlocks($tree, $user);
H A DTreePage.php42 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePage
45 * @param HomePageService $home_page_service
47 public function __construct(HomePageService $home_page_service) argument
49 $this->home_page_service = $home_page_service;
67 $this->home_page_service->checkDefaultTreeBlocksExist();
82 …'main_blocks' => $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::MAI…
83 …'side_blocks' => $this->home_page_service->treeBlocks($tree, $user, ModuleBlockInterface::SID…
H A DUserPage.php41 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPage
44 * @param HomePageService $home_page_service
46 public function __construct(HomePageService $home_page_service) argument
48 $this->home_page_service = $home_page_service;
66 $this->home_page_service->checkDefaultUserBlocksExist();
81 …'main_blocks' => $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::MAIN_BLO…
82 …'side_blocks' => $this->home_page_service->userBlocks($tree, $user, ModuleBlockInterface::SIDE_BLO…
H A DTreePageUpdate.php39 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageUpdate
42 * @param HomePageService $home_page_service
44 public function __construct(HomePageService $home_page_service) argument
46 $this->home_page_service = $home_page_service;
63 …$main_blocks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::MA…
65 …$side_blocks = $this->home_page_service->treeBlocks($default_tree, $user, ModuleBlockInterface::SI…
72 $this->home_page_service->updateTreeBlocks($tree->id(), $main_blocks, $side_blocks);
H A DUserPageUpdate.php39 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageUpdate
42 * @param HomePageService $home_page_service
44 public function __construct(HomePageService $home_page_service) argument
46 $this->home_page_service = $home_page_service;
63 $main_blocks = $this->home_page_service
66 $side_blocks = $this->home_page_service
74 $this->home_page_service->updateUserBlocks($user->id(), $main_blocks, $side_blocks);
H A DTreePageBlockUpdate.php36 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageBlockUpdate
39 * @param HomePageService $home_page_service
41 public function __construct(HomePageService $home_page_service) argument
43 $this->home_page_service = $home_page_service;
56 $block = $this->home_page_service->treeBlock($request);
H A DUserPageBlockUpdate.php36 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageBlockUpdate
39 * @param HomePageService $home_page_service
41 public function __construct(HomePageService $home_page_service) argument
43 $this->home_page_service = $home_page_service;
57 $block = $this->home_page_service->userBlock($request, $user);
H A DUserPageDefaultUpdate.php38 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageDefaultUpdate
41 * @param HomePageService $home_page_service
43 public function __construct(HomePageService $home_page_service) argument
45 $this->home_page_service = $home_page_service;
58 $this->home_page_service->updateUserBlocks(-1, $main_blocks, $side_blocks);
H A DTreePageDefaultUpdate.php38 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageDefaultUpdate
41 * @param HomePageService $home_page_service
43 public function __construct(HomePageService $home_page_service) argument
45 $this->home_page_service = $home_page_service;
58 $this->home_page_service->updateTreeBlocks(-1, $main_blocks, $side_blocks);
H A DTreePageBlockEdit.php39 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageBlockEdit
42 * @param HomePageService $home_page_service
44 public function __construct(HomePageService $home_page_service) argument
46 $this->home_page_service = $home_page_service;
59 $block = $this->home_page_service->treeBlock($request);
H A DTreePageBlock.php38 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\TreePageBlock
41 * @param HomePageService $home_page_service
43 public function __construct(HomePageService $home_page_service) argument
45 $this->home_page_service = $home_page_service;
63 $module = $this->home_page_service->getBlockModule($tree, $block_id);
H A DUserPageBlock.php39 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageBlock
42 * @param HomePageService $home_page_service
44 public function __construct(HomePageService $home_page_service) argument
46 $this->home_page_service = $home_page_service;
65 $module = $this->home_page_service->getBlockModule($tree, $block_id);
H A DUserPageBlockEdit.php39 private HomePageService $home_page_service; variable in Fisharebest\\Webtrees\\Http\\RequestHandlers\\UserPageBlockEdit
42 * @param HomePageService $home_page_service
44 public function __construct(HomePageService $home_page_service) argument
46 $this->home_page_service = $home_page_service;
60 $block = $this->home_page_service->userBlock($request, $user);