ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.GUIService.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
25
27{
30
31 public function __construct(
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,
45 $read_only
46 );
47 }
48
50 int $user_id,
51 string $title,
52 array $objects,
53 string $selected_type,
54 object $parent_gui,
55 string $parent_cmd
58 $this->domain_service,
59 $this->gui_service,
61 $title,
62 $objects,
63 $selected_type,
64 $parent_gui,
65 $parent_cmd
66 );
67 }
68}
ownershipManagementTableBuilder(int $user_id, string $title, array $objects, string $selected_type, object $parent_gui, string $parent_cmd)
ownershipManagementGUI(?int $user_id=null, bool $read_only=false)
__construct(InternalDomainService $domain_service, InternalGUIService $gui_service)
return['delivery_method'=> 'php',]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...