ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
AbstractBaseTool.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use Closure;
25 
29 abstract class AbstractBaseTool extends AbstractParentItem implements isToolItem
30 {
32 
33  protected bool $initially_hidden = false;
34 
38  public function withInitiallyHidden(bool $initially_hidden): isToolItem
39  {
40  $clone = clone($this);
41  $clone->initially_hidden = $initially_hidden;
42 
43  return $clone;
44  }
45 
49  public function isInitiallyHidden(): bool
50  {
52  }
53 
57  public function withCloseCallback(Closure $close_callback): isToolItem
58  {
59  $clone = clone($this);
60  $clone->close_callback = $close_callback;
61 
62  return $clone;
63  }
64 
68  public function getCloseCallback(): Closure
69  {
70  return $this->close_callback;
71  }
72 
76  public function hasCloseCallback(): bool
77  {
78  return $this->close_callback instanceof Closure;
79  }
80 }
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null