ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
UsageManager.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Taxonomy\Usage
;
22
23
class
UsageManager
24
{
25
protected
UsageDBRepository
$db_repo
;
26
27
public
function
__construct
(
28
UsageDBRepository
$db_repo
29
) {
30
$this->db_repo =
$db_repo
;
31
}
32
33
public
function
getUsageOfObject
(
int
$obj_id,
bool
$include_titles =
false
): array
34
{
35
return
$this->db_repo->getUsageOfObject($obj_id, $include_titles);
36
}
37
}
ILIAS\Skill\Usage\UsageManager\getUsageOfObject
getUsageOfObject(int $obj_id, bool $include_titles=false)
Definition:
UsageManager.php:33
ILIAS\Skill\Usage\UsageManager\$db_repo
UsageDBRepository $db_repo
Definition:
UsageManager.php:25
ILIAS\Skill\Usage\UsageDBRepository
Definition:
class.UsageDBRepository.php:26
ILIAS\Skill\Usage\UsageManager
Definition:
UsageManager.php:23
ILIAS\Taxonomy\Usage
Definition:
UsageDBRepository.php:21
ILIAS\Skill\Usage\UsageManager\__construct
__construct(UsageDBRepository $db_repo)
Definition:
UsageManager.php:27
components
ILIAS
Taxonomy
Usage
UsageManager.php
Generated on Wed Sep 3 2025 23:04:00 for ILIAS by
1.8.13 (using
Doxyfile
)