ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ImportManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
31 
32  public function __construct(ImportSessionRepository $repo)
33  {
34  $this->repo = $repo;
35  }
36 
37  public function getMobs(): array
38  {
39  return $this->repo->getMobs();
40  }
41 
42  public function addMob(string $label, string $uri): void
43  {
44  $this->repo->addMob($label, $uri);
45  }
46 
47  public function clearMobs(): void
48  {
49  $this->repo->clearMobs();
50  }
51 }
Manages items in repository clipboard.