ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ViewControlInput.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 
29 abstract class ViewControlInput extends Input implements ViewControlInputInterface
30 {
32  use Triggerer;
33 
34  protected ?Signal $change_signal = null;
35 
36  public function withOnChange(Signal $change_signal): self
37  {
38  $clone = clone $this;
39  $clone->change_signal = $change_signal;
40  return $clone;
41  }
42 
43  public function getOnChangeSignal(): Signal
44  {
45  if (!$this->change_signal) {
46  throw new \LogicException('View Control must be inside of View Control Container');
47  }
48  return $this->change_signal;
49  }
50 }
This implements commonalities between inputs.
Definition: Input.php:42
trait JavaScriptBindable
Trait for components implementing JavaScriptBindable providing standard implementation.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Factory.php:21