ILIAS  trunk Revision v11.0_alpha-1749-g1a06bdef097
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ClipboardManager.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
31 
32  public function __construct(ClipboardSessionRepository $repo)
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.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(ClipboardSessionRepository $repo)