ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
AsyncNode.php
Go to the documentation of this file.
1 <?php
2 declare(strict_types=1);
3 
4 /* Copyright (c) 2019 Nils Haagen <nils.haagen@concepts-and-training.de> Extended GPL, see docs/LICENSE */
5 
7 
11 interface AsyncNode
12 {
16  public function getAsyncLoading() : bool;
17 
21  public function withAsyncURL(string $url) : Simple;
22 
26  public function getAsyncURL() : string;
27 }
This describes a Tree Node.
Definition: AsyncNode.php:11
getAsyncURL()
Get URL for async loading.
This describes a very basic Tree Node.
Definition: Simple.php:11
withAsyncURL(string $url)
Set URL for async loading.
getAsyncLoading()
Should this node load its children asyncronously?
$url