parent_name]))
$this->request->set_relation($_GET[$this->parent_name]);
else
$this->request->set_relation($this->rootId);
$this->request->set_limit(0, 0); //netralize default reaction on dyn. loading mode
}
/*! renders self as xml, starting part
*/
public function xml_start()
{
$attributes = "";
foreach ($this->attributes as $k => $v)
$attributes .= " " . $k . "='" . $v . "'";
return "";
}
/*! renders self as xml, ending part
*/
public function xml_end()
{
$this->fill_collections();
return $this->extra_output . "";
}
}