ILIAS  trunk Revision v11.0_alpha-2662-g519ff7d528f
class.GUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Blog\Contributor;
22 
26 
31 {
35 
36  public function __construct(
37  InternalDataService $data_service,
38  InternalDomainService $domain_service,
40  ) {
41  $this->data_service = $data_service;
42  $this->domain_service = $domain_service;
43  $this->gui = $gui;
44  }
45 
46 
47  public function contributorTableBuilder(
48  array $roles,
49  object $parent_gui,
50  string $parent_cmd
52  return new ContributorTableBuilder(
53  $this->domain_service,
54  $this->gui,
55  $roles,
56  $parent_gui,
57  $parent_cmd
58  );
59  }
60 }
InternalDomainService $domain_service
contributorTableBuilder(array $roles, object $parent_gui, string $parent_cmd)
__construct(InternalDataService $data_service, InternalDomainService $domain_service, InternalGUIService $gui)