ILIAS  release_6 Revision v6.24-5-g0c8bfefb3b8
All Data Structures Namespaces Files Functions Variables Modules Pages
TopParentItem.php
Go to the documentation of this file.
2 
10 
16 {
18  use hasSymbolTrait;
19 
23  protected $title = '';
27  protected $supports_async_loading = false;
28 
33  public function withTitle(string $title) : hasTitle
34  {
35  $clone = clone($this);
36  $clone->title = $title;
37 
38  return $clone;
39  }
40 
44  public function getTitle() : string
45  {
46  return $this->title;
47  }
48 
50  {
51  $clone = clone($this);
52  $clone->supports_async_loading = $supported;
53 
54  return $clone;
55  }
56 
57  public function supportsAsynchronousLoading() : bool
58  {
60  }
61 }
Interface hasSymbol Methods for Entries with Symbols.
Definition: hasSymbol.php:11
trait hasSymbolTrait
Trait hasSymbolTrait.