Wiki repo service.
More...
Wiki repo service.
Definition at line 31 of file class.InternalRepoService.php.
◆ __construct()
◆ importantPage()
ILIAS\Wiki\InternalRepoService::importantPage |
( |
| ) |
|
Definition at line 49 of file class.InternalRepoService.php.
49 : ImportantPageDBRepository
50 {
51 return self::$instance["imp_page"] ??= new ImportantPageDBRepository(
52 $this->data,
53 $this->db
54 );
55 }
◆ missingPage()
ILIAS\Wiki\InternalRepoService::missingPage |
( |
| ) |
|
Definition at line 57 of file class.InternalRepoService.php.
57 : MissingPageDBRepository
58 {
59 return self::$instance["missing_page"] ??= new MissingPageDBRepository(
60 $this->data,
61 $this->db
62 );
63 }
◆ page()
ILIAS\Wiki\InternalRepoService::page |
( |
| ) |
|
Definition at line 41 of file class.InternalRepoService.php.
41 : PageDBRepository
42 {
43 return self::$instance["page"] ??= new PageDBRepository(
44 $this->data,
45 $this->db
46 );
47 }
◆ settings()
ILIAS\Wiki\InternalRepoService::settings |
( |
| ) |
|
Definition at line 65 of file class.InternalRepoService.php.
65 : SettingsDBRepository
66 {
67 return self::$instance["settings"] ??= new SettingsDBRepository(
68 $this->db,
69 $this->data
70 );
71 }
◆ $instance
array ILIAS\Wiki\InternalRepoService::$instance = [] |
|
staticprotected |
The documentation for this class was generated from the following file: