ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
isStandardItem.php
Go to the documentation of this file.
2 
7 interface isStandardItem extends isItem
8 {
9 
15  public function withOpenedCallable(callable $handle_opened) : isItem;
16 
21  public function getOpenedCallable() : callable;
22 
28  public function withClosedCallable(callable $handle_closed) : isItem;
29 
34  public function getClosedCallable();
35 
41  public function hasClosedCallable();
42 }
getClosedCallable()
Get the callable to be executed, when this specific item is closed.
getOpenedCallable()
Get the callable to be executed, when the notification center is opened.
hasClosedCallable()
Get whether there are any callables to be executed when the notification center is closed...
withClosedCallable(callable $handle_closed)
Set the callable to be executed, when this specific item is closed.
withOpenedCallable(callable $handle_opened)
Set the callable to be executed, when the notification center is opened.