ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
ScreenContext.php
Go to the documentation of this file.
2 
5 
11 interface ScreenContext
12 {
13 
17  public function getUniqueContextIdentifier() : string;
18 
19 
23  public function hasReferenceId() : bool;
24 
25 
29  public function getReferenceId() : ReferenceId;
30 
31 
37  public function withReferenceId(ReferenceId $reference_id) : ScreenContext;
38 
39 
45  public function withAdditionalData(Collection $collection) : ScreenContext;
46 
47 
54  public function addAdditionalData(string $key, $value) : ScreenContext;
55 
56 
60  public function getAdditionalData() : Collection;
61 }
withReferenceId(ReferenceId $reference_id)