ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.InternalRepoService.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\MediaObjects;
22 
26 
28 {
29  use RepoServiceBase;
30 
31  protected static array $instance = [];
32 
33  public function __construct(
34  protected InternalDataService $data,
35  protected \ilDBInterface $db
36  ) {
37  }
38 
39  public function imageMap(): ImageMapEditSessionRepository
40  {
41  return new ImageMapEditSessionRepository();
42  }
43 
44  public function usage(): UsageDBRepository
45  {
46  return self::$instance["usage"] ??= new UsageDBRepository($this->db);
47  }
48 
49  public function mediaObject(): MediaObjectRepository
50  {
51  return self::$instance["media_object"] ??=
52  new MediaObjectRepository(
53  $this->db,
54  $this->irss()
55  );
56  }
57 
58 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(protected InternalDataService $data, protected \ilDBInterface $db)