ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
isStandardItem.php
Go to the documentation of this file.
2
7interface 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}
An exception for terminatinating execution or to throw for unit testing.
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.
withOpenedCallable(callable $handle_opened)
Set the callable to be executed, when the notification center is opened.
getClosedCallable()
Get the callable to be executed, when this specific item is closed.
withClosedCallable(callable $handle_closed)
Set the callable to be executed, when this specific item is closed.