ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
Section.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use ILIAS\UI\Component as C;
28 
29 class Section implements C\ViewControl\Section
30 {
31  use ComponentHelper;
32 
34  protected Component $button;
35  protected Button $next_action;
36 
37  public function __construct(Button $previous_action, Component $button, Button $next_action)
38  {
39  if (!$button instanceof Month) {
40  $this->checkArgInstanceOf("button", $button, Button::class);
41  }
42  $this->previous_action = $previous_action;
43  $this->button = $button;
44  $this->next_action = $next_action;
45  }
46 
50  public function getPreviousActions(): Button
51  {
53  }
54 
58  public function getNextActions(): Button
59  {
60  return $this->next_action;
61  }
62 
68  public function getSelectorButton(): Component
69  {
70  return $this->button;
71  }
72 }
button(string $caption, string $cmd)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This describes the Month Button.
Definition: Month.php:30
getSelectorButton()
Returns the Default- or Split-Button placed in the middle of the control.
Definition: Section.php:68
getNextActions()
Returns the action executed by clicking on next.
Definition: Section.php:58
__construct(Button $previous_action, Component $button, Button $next_action)
Definition: Section.php:37
getPreviousActions()
Returns the action executed by clicking on previous.
Definition: Section.php:50