Beispiel #1
0
 public static function getRootProperties($id)
 {
     $rez = array('success' => true, 'data' => array());
     $r = DM\Tree::getProperties($id);
     if (!empty($r)) {
         $rez['data'] = array($r);
         Browser::updateLabels($rez['data']);
         $rez['data'] = $rez['data'][0];
     }
     return $rez;
 }