File: api.zones.inc.php

package info (click to toggle)
jffnms 0.8.3dfsg.1-2.1etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,928 kB
  • ctags: 5,050
  • sloc: php: 19,981; sh: 266; makefile: 91; perl: 52
file content (40 lines) | stat: -rw-r--r-- 977 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?
/* This file is part of JFFNMS
 * Copyright (C) <2002-2005> Javier Szyszlican <javier@szysz.com>
 * This program is licensed under the GNU GPL, full terms in the LICENSE file
 */
    function zones_list($ids = NULL) {
	return get_db_list(
	    array("zones"),
	    $ids,
	    "zones.*",
	    array(array("zones.id",">","1")),
	    array(array("zone","asc")));
    }

    function adm_zones_add() {
	return db_insert("zones",array("zone"=>"a New Zone","image"=>"unknown.png"));
    }

    function adm_zones_update($id,$data) {
	return db_update("zones",$id,$data);
    }

    function adm_zones_del($id) {
	
	$list = hosts_list (NULL,$id);
	
	foreach ($list as $aux) 
	    adm_hosts_del($aux[id]);

	$list = hosts_list (NULL,$id);
	
	if (count($list) == 0) return db_delete("zones",$id);
	else return FALSE;
    }

    function zones_status ($zone_id = NULL, $only_in_rootmap = 0) {
	return interfaces_status(NULL,array(zone=>$zone_id,in_maps=>$only_in_rootmap));
    }

?>