ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
class.DerivedTaskProviderFactory.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2019 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
5 namespace ILIAS\Survey\Tasks;
6 
13 {
17  protected $task_service;
18 
22  protected $access;
23 
27  protected $lng;
28 
33  {
34  global $DIC;
35 
36  $this->access = is_null($access)
37  ? $DIC->access()
38  : $access;
39 
40  $this->lng = is_null($lng)
41  ? $DIC->language()
42  : $lng;
43 
44  $this->task_service = $task_service;
45  }
46 
50  public function getProviders() : array
51  {
52  return [
54  $this->task_service,
55  $this->access,
56  $this->lng
57  )
58  ];
59  }
60 }
global $DIC
Definition: goto.php:24
__construct(\ilTaskService $task_service, \ilAccess $access=null, \ilLanguage $lng=null)
Constructor.
Task service.