Changed code for to run with Alex's code

This commit is contained in:
mdtrooper 2014-12-17 19:56:42 +01:00
parent 9191b97f07
commit 3556621cf0
2 changed files with 5 additions and 5 deletions

View File

@ -18,14 +18,14 @@ require_once("include/class/Tree.class.php");
$getChildren = (bool)get_parameter('getChildren', 0);
if ($getChildren) {
$type = get_parameter('type', 'group');
$filter = get_parameter('filter',
array('type' => 'groupz',
'search' => '',
array('search' => '',
'status' => AGENT_STATUS_ALL));
$root = (int)get_parameter('root', 0);
$id = (int)get_parameter('id', 0);
$method = get_parameter('method', 'on_demand');
$tree = new Tree($filter['type'], $method, $root);
$tree = new Tree($type, $method, $id);
$tree->setFilter(array(
'status' => $filter['status'],
'search' => $filter['search']));

View File

@ -18,7 +18,7 @@ class Tree {
private $tree = array();
private $filter = array();
private $root = null;
private $children = "on_demand";
private $childrenMethod = "on_demand";
public function __construct($type, $childrenMethod = "on_demand", $root = null) {
$this->type = $type;