ILIAS
trunk Revision v11.0_alpha-3011-gc6b235a2e85
◀ ilDoc Overview
class.GUIService.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Repository\Ownership
;
22
23
use
ILIAS\Repository\InternalGUIService
;
24
use
ILIAS\Repository\InternalDomainService
;
25
26
class
GUIService
27
{
28
protected
InternalGUIService
$gui_service
;
29
protected
InternalDomainService
$domain_service
;
30
31
public
function
__construct
(
32
InternalDomainService
$domain_service
,
33
InternalGUIService
$gui_service
34
) {
35
$this->gui_service =
$gui_service
;
36
$this->domain_service =
$domain_service
;
37
}
38
39
public
function
ownershipManagementGUI
(?
int
$user_id
=
null
,
bool
$read_only =
false
): \
ilObjectOwnershipManagementGUI
40
{
41
return
new \ilObjectOwnershipManagementGUI(
42
$this->domain_service,
43
$this->gui_service,
44
$user_id
,
45
$read_only
46
);
47
}
48
49
public
function
ownershipManagementTableBuilder
(
50
int
$user_id
,
51
string
$title,
52
array $objects,
53
string
$selected_type,
54
object
$parent_gui,
55
string
$parent_cmd
56
):
OwnershipManagementTableBuilder
{
57
return
new
OwnershipManagementTableBuilder
(
58
$this->domain_service,
59
$this->gui_service,
60
$user_id
,
61
$title,
62
$objects,
63
$selected_type,
64
$parent_gui,
65
$parent_cmd
66
);
67
}
68
}
ILIAS\Repository\InternalDomainService
Definition:
class.InternalDomainService.php:28
ILIAS\Repository\InternalGUIService
Definition:
class.InternalGUIService.php:29
ILIAS\Repository\Ownership\GUIService
Definition:
class.GUIService.php:27
ILIAS\Repository\Ownership\GUIService\ownershipManagementTableBuilder
ownershipManagementTableBuilder(int $user_id, string $title, array $objects, string $selected_type, object $parent_gui, string $parent_cmd)
Definition:
class.GUIService.php:49
ILIAS\Repository\Ownership\GUIService\$gui_service
InternalGUIService $gui_service
Definition:
class.GUIService.php:28
ILIAS\Repository\Ownership\GUIService\$domain_service
InternalDomainService $domain_service
Definition:
class.GUIService.php:29
ILIAS\Repository\Ownership\GUIService\ownershipManagementGUI
ownershipManagementGUI(?int $user_id=null, bool $read_only=false)
Definition:
class.GUIService.php:39
ILIAS\Repository\Ownership\GUIService\__construct
__construct(InternalDomainService $domain_service, InternalGUIService $gui_service)
Definition:
class.GUIService.php:31
ILIAS\Repository\Ownership\OwnershipManagementTableBuilder
Definition:
OwnershipManagementTableBuilder.php:31
ilObjectOwnershipManagementGUI
Definition:
class.ilObjectOwnershipManagementGUI.php:25
return
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
delivery_method.php:21
ILIAS\Repository\Ownership
Definition:
OwnershipManagementRetrieval.php:21
$user_id
int $user_id
Definition:
trait.ilExAssignmentTypeGUIBase.php:38
components
ILIAS
Repository
Ownership
Service
class.GUIService.php
Generated on Sat Oct 18 2025 23:02:38 for ILIAS by
1.9.4 (using
Doxyfile
)