ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUserActionCollection.php
Go to the documentation of this file.
1 <?php
2 
24 {
28  protected array $actions = array();
29 
30  public static function getInstance(): ilUserActionCollection
31  {
32  return new self();
33  }
34 
40  public function addAction(ilUserAction $a_action): void
41  {
42  $this->actions[] = $a_action;
43  }
44 
48  public function getActions(): array
49  {
50  return $this->actions;
51  }
52 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addAction(ilUserAction $a_action)
Add action.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...