ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDummyDerivedTaskProvider.php
Go to the documentation of this file.
1 <?php
2 
25 {
27 
31  public function __construct(ilTaskService $task_service)
32  {
33  $this->task_service = $task_service;
34  }
35 
39  public function isActive(): bool
40  {
41  return true;
42  }
43 
47  public function getTasks(int $user_id): array
48  {
49  $tasks = [];
50 
51  $tasks[] = $this->task_service->derived()->factory()->task(
52  "title",
53  123,
54  1234,
55  1000
56  );
57 
58  return $tasks;
59  }
60 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getTasks(int $user_id)
Get providers.ilDerivedTask[]
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ilTaskService $task_service)
Constructor.
Task service.