ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
class.arIndexTableAction.php
Go to the documentation of this file.
1 <?php
2 
11 
15  protected $id = 0;
19  protected $title = "";
23  protected $target_class = "";
27  protected $target_cmd = "";
31  protected $access = "";
32 
33 
42  $this->id = $id;
43  $this->title = $title;
44  $this->target_class = $target_class;
45  $this->target_cmd = $target_cmd;
46  $this->access = $access;
47  }
48 
49 
53  public function setAccess($access) {
54  $this->access = $access;
55  }
56 
57 
61  public function getAccess() {
62  return $this->access;
63  }
64 
65 
69  public function setActions($actions) {
70  $this->actions = $actions;
71  }
72 
73 
77  public function getActions() {
78  return $this->actions;
79  }
80 
81 
85  public function setId($id) {
86  $this->id = $id;
87  }
88 
89 
93  public function getId() {
94  return $this->id;
95  }
96 
97 
101  public function setTargetClass($target_class) {
102  $this->target_class = $target_class;
103  }
104 
105 
109  public function getTargetClass() {
110  return $this->target_class;
111  }
112 
113 
117  public function setTargetCmd($target_cmd) {
118  $this->target_cmd = $target_cmd;
119  }
120 
121 
125  public function getTargetCmd() {
126  return $this->target_cmd;
127  }
128 
129 
133  public function setTitle($title) {
134  $this->title = $title;
135  }
136 
137 
141  public function getTitle() {
142  return $this->title;
143  }
144 }