ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ImportManager.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
29{
31
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.