ILIAS
release_8 Revision v8.23
◀ ilDoc Overview
class.InternalRepoService.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
namespace
ILIAS\Portfolio
;
22
23
use
ILIAS\Portfolio\Access\AccessSessionRepository
;
24
28
class
InternalRepoService
29
{
30
protected
InternalDataService
$data
;
31
protected \ilDBInterface
$db
;
32
33
public
function
__construct
(
InternalDataService
$data, \
ilDBInterface
$db)
34
{
35
$this->data =
$data
;
36
$this->db =
$db
;
37
}
38
39
/*
40
public function ...() : ...\RepoService
41
{
42
return new ...\RepoService(
43
$this->data,
44
$this->db
45
);
46
}*/
47
48
public
function
accessSession
():
AccessSessionRepository
49
{
50
return
new
AccessSessionRepository
();
51
}
52
}
ILIAS\Portfolio\InternalRepoService\__construct
__construct(InternalDataService $data, \ilDBInterface $db)
Definition:
class.InternalRepoService.php:33
ILIAS\Portfolio
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Portfolio\InternalDataService
Definition:
class.InternalDataService.php:26
ILIAS\Portfolio\InternalRepoService\$data
InternalDataService $data
Definition:
class.InternalRepoService.php:30
ilDBInterface
ILIAS\Portfolio\InternalRepoService\$db
ilDBInterface $db
Definition:
class.InternalRepoService.php:31
AccessSessionRepository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS\Portfolio\InternalRepoService
Definition:
class.InternalRepoService.php:28
ILIAS\Portfolio\InternalRepoService\accessSession
accessSession()
Definition:
class.InternalRepoService.php:48
ILIAS\Portfolio\Access\AccessSessionRepository
Stores repository clipboard data.
Definition:
class.AccessSessionRepository.php:28
Modules
Portfolio
Service
class.InternalRepoService.php
Generated on Sun Aug 31 2025 22:01:16 for ILIAS by
1.8.13 (using
Doxyfile
)