ILIAS
release_10 Revision v10.1-43-ga1241a92c2f
◀ ilDoc Overview
class.InternalRepoService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Blog
;
22
23
use
ILIAS\Blog\Settings\SettingsDBRepository
;
24
25
class
InternalRepoService
26
{
27
protected
static
array
$instance
= [];
28
29
public
function
__construct
(
30
protected
InternalDataService
$data
,
31
protected
\
ilDBInterface
$db
32
) {
33
}
34
35
public
function
settings
(): SettingsDBRepository
36
{
37
return
self::$instance[
"settings"
] ??=
new
SettingsDBRepository(
38
$this->db,
39
$this->data
40
);
41
}
42
}
$data
$data
Definition:
ltiregistration.php:29
ILIAS\Blog\InternalRepoService\__construct
__construct(protected InternalDataService $data, protected \ilDBInterface $db)
Definition:
class.InternalRepoService.php:29
ILIAS\Blog\InternalRepoService\settings
settings()
Definition:
class.InternalRepoService.php:35
ILIAS\Blog\InternalDataService
Definition:
class.InternalDataService.php:26
ilDBInterface
ILIAS\Blog
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Blog\InternalRepoService
Definition:
class.InternalRepoService.php:25
SettingsDBRepository
ILIAS\Export\InternalRepoService\$instance
static array $instance
Definition:
class.InternalRepoService.php:30
ILIAS\$db
$db
Definition:
class.ilias.php:60
components
ILIAS
Blog
Service
class.InternalRepoService.php
Generated on Wed Sep 10 2025 15:14:58 for ILIAS by
1.8.13 (using
Doxyfile
)