ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ImportManager.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...