ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.DataService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Notes;
22 
28 {
30 
31  public function __construct(InternalDataService $internal_data)
32  {
33  $this->internal_data = $internal_data;
34  }
35 
43  public function context(
44  int $obj_id = 0,
45  int $sub_obj_id = 0,
46  string $type = "",
47  int $news_id = 0,
48  bool $in_repo = true
49  ): Context {
50  return $this->internal_data->context(
51  $obj_id,
52  $sub_obj_id,
53  $type,
54  $news_id,
55  $in_repo
56  );
57  }
58 }
Repository internal data service.
Repository internal data service.
context(int $obj_id=0, int $sub_obj_id=0, string $type="", int $news_id=0, bool $in_repo=true)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(InternalDataService $internal_data)
InternalDataService $internal_data