ILIAS  trunk Revision v11.0_alpha-1761-g6dbbfa7b760
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InternalGUIService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\News;
22 
26 
31 {
33 
36 
37  public function __construct(
39  InternalDataService $data_service,
40  InternalDomainService $domain_service
41  ) {
42  $this->data_service = $data_service;
43  $this->domain_service = $domain_service;
44  $this->initGUIServices($DIC);
45  }
46 
48  {
49  return new StandardGUIRequest(
50  $this->http(),
51  $this->domain_service->refinery()
52  );
53  }
54 
56  {
57  return new \ILIAS\News\Dashboard\InternalGUIService(
58  $this->data_service,
59  $this->domain_service,
60  $this
61  );
62  }
63 }
initGUIServices(\ILIAS\DI\Container $DIC)
Interface Observer Contains several chained tasks and infos about them.
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
__construct(Container $DIC, InternalDataService $data_service, InternalDomainService $domain_service)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Repository internal data service.