Exemplo n.º 1
0
 public function request($path_args)
 {
     $tpl = new Template("findAreas.xhtml");
     $tpl->limit = $limit = 20;
     $tpl->offset = $offset = Util::GetInt('offset', 0);
     $tpl->results = $results = RO_Zone::findByName(Util::GetString('name', ''), RO_Realm::mapRegions(explode(',', Util::GetString('regions', ''))));
     $tpl->moreresults = count($results) > $offset + $limit;
     return array('offset' => $offset, 'limit' => $limit, 'total' => count($results), 'html' => $tpl->execute());
 }
Exemplo n.º 2
0
 public static function request($path_args)
 {
     $result = RO_Zone::suggest(Util::GetString('term'));
     $ret = array();
     foreach ($result as $val) {
         $ret[] = array('label' => $val->name, 'realm' => $val->realm, 'region' => $val->region);
     }
     return $ret;
 }