ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDerivedTaskFactory.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
29 
33  public function __construct(ilTaskService $service)
34  {
35  $this->_deps = $service->getDependencies();
36  $this->service = $service;
37  }
38 
42  public function task(string $title, int $ref_id, int $deadline, int $starting_time, int $wsp_id = 0): ilDerivedTask
43  {
44  return new ilDerivedTask($title, $ref_id, $deadline, $starting_time, $wsp_id);
45  }
46 
50  public function collector(): ilDerivedTaskCollector
51  {
52  return new ilDerivedTaskCollector($this->service);
53  }
54 
62  public function getAllProviders(bool $active_only = false, ?int $user_id = null): array
63  {
64  $master_factory = $this->service->getDependencies()->getDerivedTaskProviderMasterFactory();
65  return $master_factory->getAllProviders($active_only, $user_id);
66  }
67 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getDependencies()
Get dependencies.
task(string $title, int $ref_id, int $deadline, int $starting_time, int $wsp_id=0)
Subservice for derived tasks.
getAllProviders(bool $active_only=false, ?int $user_id=null)
Get all task providers.
__construct(ilTaskService $service)
Constructor.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
$ref_id
Definition: ltiauth.php:65
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilTaskServiceDependencies $_deps
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Task service.