ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
class.InternalRepoService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Container\Block
;
22
27
class
InternalRepoService
28
{
29
protected
InternalDataService
$data
;
30
protected \ilDBInterface
$db
;
31
32
public
function
__construct
(
InternalDataService
$data, \
ilDBInterface
$db)
33
{
34
$this->data =
$data
;
35
$this->db =
$db
;
36
}
37
38
/*
39
public function ...() : ...\RepoService
40
{
41
return new ...\RepoService(
42
$this->data,
43
$this->db
44
);
45
}*/
46
47
public
function
blockSession
():
BlockSessionRepository
48
{
49
return
new
BlockSessionRepository
();
50
}
51
}
ILIAS\Container\Block\InternalDataService
Block data service.
Definition:
class.InternalDataService.php:27
ILIAS\Container\Block\InternalRepoService\blockSession
blockSession()
Definition:
class.InternalRepoService.php:47
ILIAS\Container\Block\InternalRepoService\$data
InternalDataService $data
Definition:
class.InternalRepoService.php:29
ILIAS\Container\Block
Definition:
class.BlockManager.php:21
ILIAS\Container\Block\InternalRepoService\$db
ilDBInterface $db
Definition:
class.InternalRepoService.php:30
ilDBInterface
ILIAS\Container\Block\InternalRepoService\__construct
__construct(InternalDataService $data, \ilDBInterface $db)
Definition:
class.InternalRepoService.php:32
ILIAS\Container\Block\InternalRepoService
Block repo service.
Definition:
class.InternalRepoService.php:27
ILIAS\Container\Block\BlockSessionRepository
Stores repository clipboard data.
Definition:
class.BlockSessionRepository.php:28
components
ILIAS
Container
Block
Service
class.InternalRepoService.php
Generated on Wed Sep 3 2025 23:02:18 for ILIAS by
1.8.13 (using
Doxyfile
)