ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
class.ClipboardManager.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 setFolder(int $fold_id): void
38 {
39 $this->repo->setFolder($fold_id);
40 }
41
42 public function getFolder(): int
43 {
44 return $this->repo->getFolder();
45 }
46
47 public function setIds(array $ids): void
48 {
49 $this->repo->setIds($ids);
50 }
51
52 public function getIds(): array
53 {
54 return $this->repo->getIds();
55 }
56}
Manages items in repository clipboard.
__construct(ClipboardSessionRepository $repo)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...