ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilUserAction.php
Go to the documentation of this file.
1 <?php
2 
24 {
25  protected string $text = "";
26  protected string $href = "";
30  protected array $data = [];
31  protected string $type = "";
32 
33  public function setText(string $a_val): void
34  {
35  $this->text = $a_val;
36  }
37 
38  public function getText(): string
39  {
40  return $this->text;
41  }
42 
43  public function setHref(string $a_val): void
44  {
45  $this->href = $a_val;
46  }
47 
48  public function getHref(): string
49  {
50  return $this->href;
51  }
52 
53  public function setType(string $a_val): void
54  {
55  $this->type = $a_val;
56  }
57 
58  public function getType(): string
59  {
60  return $this->type;
61  }
62 
66  public function setData(array $a_val): void
67  {
68  $this->data = $a_val;
69  }
70 
74  public function getData(): array
75  {
76  return $this->data;
77  }
78 }
setData(array $a_val)
setHref(string $a_val)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setType(string $a_val)
setText(string $a_val)