ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilForumDerivedTaskProviderFactory.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28  protected ilSetting $settings;
29  protected ilLanguage $lng;
31 
32  public function __construct(
33  protected ilTaskService $taskService,
34  ?ilAccessHandler $accessHandler = null,
35  ?ilSetting $settings = null,
36  ?ilLanguage $lng = null,
37  ?ilCtrlInterface $ctrl = null
38  ) {
39  global $DIC;
40  $this->accessHandler = is_null($accessHandler)
41  ? $DIC->access()
43 
44  $this->settings = is_null($settings)
45  ? $DIC->settings()
46  : $settings;
47 
48  $this->lng = is_null($lng)
49  ? $DIC->language()
50  : $lng;
51 
52  $this->ctrl = is_null($ctrl)
53  ? $DIC->ctrl()
54  : $ctrl;
55  }
56 
57  public function getProviders(): array
58  {
59  return [
61  $this->taskService,
62  $this->accessHandler,
63  $this->lng,
64  $this->settings,
65  $this->ctrl
66  )
67  ];
68  }
69 }
__construct(protected ilTaskService $taskService, ?ilAccessHandler $accessHandler=null, ?ilSetting $settings=null, ?ilLanguage $lng=null, ?ilCtrlInterface $ctrl=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
Task service.
Class ilForumDraftsDerivedTaskProvider.
Class ilForumDerivedTaskProviderFactory.