ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.GUIService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Blog\Settings;
22
26
28{
29 public function __construct(
30 protected InternalDataService $data,
31 protected InternalDomainService $domain,
32 protected InternalGUIService $gui
33 ) {
34 }
35
36 public function settingsGUI(int $obj_id, bool $in_repository): SettingsGUI
37 {
38 return new SettingsGUI(
39 $this->data,
40 $this->domain,
41 $this->gui,
42 $obj_id,
43 $in_repository
44 );
45 }
46
47 public function blockSettingsGUI(int $obj_id, bool $in_repository): BlockSettingsGUI
48 {
49 return new BlockSettingsGUI(
50 $this->data,
51 $this->domain,
52 $this->gui,
53 $obj_id,
54 $in_repository
55 );
56 }
57
58}
blockSettingsGUI(int $obj_id, bool $in_repository)
settingsGUI(int $obj_id, bool $in_repository)
__construct(protected InternalDataService $data, protected InternalDomainService $domain, protected InternalGUIService $gui)