Exemple #1
0
 public static function getAllEntries()
 {
     global $_module;
     if (!isset($_GET['search'])) {
         $_GET['search'] = '';
     }
     if (!empty($_GET['search'])) {
         $result = osC_ZoneGroups_Admin::findEntries($_GET['search'], $_GET[$_module]);
     } else {
         $result = osC_ZoneGroups_Admin::getAllEntries($_GET[$_module]);
     }
     $result['rpcStatus'] = RPC_STATUS_SUCCESS;
     echo json_encode($result);
 }