HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
RAuthItemChildDataProvider.php
Go to the documentation of this file.
1 <?php
11 {
20  public function __construct($parent, $config = array())
21  {
22  $this->parent = $parent;
23  $this->setId($parent->name);
24 
25  foreach ($config as $key => $value) {
26  $this->$key = $value;
27  }
28  }
29 
35  public function fetchData()
36  {
37  $this->items = Rights::getAuthorizer()->getAuthItemChildren($this->parent->name, $this->type);
38 
39  return parent::fetchData();
40  }
41 }