summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/classes/chostsinfo.mod.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-14 15:21:27 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-03-14 15:21:27 +0000
commit25036c9384fcec4d36f4cfc69fe2b86e4ef2c9c6 (patch)
tree01e08dad83c7671bb8a19b9c40f2f786b033d99e /frontends/php/include/classes/chostsinfo.mod.php
parentf35b829723124ac2c15defd1d5cce44b40b1c8ec (diff)
downloadzabbix-25036c9384fcec4d36f4cfc69fe2b86e4ef2c9c6.tar.gz
zabbix-25036c9384fcec4d36f4cfc69fe2b86e4ef2c9c6.tar.xz
zabbix-25036c9384fcec4d36f4cfc69fe2b86e4ef2c9c6.zip
- added "Data overview" for screens
- added "Triggers overview" for screens (Eugene) - added blinking into Trigger overview (Eugene) - added screen displaying in other screen (Eugene) - improved Overview table header, vertical text added (Eugene) - developed "ZABBIX Clock" module for screens (Eugene) - developed "ZABBIX server info" module for screens (Eugene) - developed "Triggers info" module for screens (Eugene) - developed "Host info" module for screens (Eugene) - improved screens displaying, added item alignment (Eugene) - improved ZABBIX server report (Eugene) - improved images configuration (Eugene) - added onserver image resizing for thumbs by php (Eugene) - developed acknowledges system (Eugene) - added icons displaying for maps (Eugene) - added maps displaying for maps (Eugene) - improved maps (Eugene) git-svn-id: svn://svn.zabbix.com/trunk@2699 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/classes/chostsinfo.mod.php')
-rw-r--r--frontends/php/include/classes/chostsinfo.mod.php82
1 files changed, 82 insertions, 0 deletions
diff --git a/frontends/php/include/classes/chostsinfo.mod.php b/frontends/php/include/classes/chostsinfo.mod.php
new file mode 100644
index 00000000..b570f7e2
--- /dev/null
+++ b/frontends/php/include/classes/chostsinfo.mod.php
@@ -0,0 +1,82 @@
+<?php
+/*
+** ZABBIX
+** Copyright (C) 2000-2005 SIA Zabbix
+**
+** This program is free software; you can redistribute it and/or modify
+** it under the terms of the GNU General Public License as published by
+** the Free Software Foundation; either version 2 of the License, or
+** (at your option) any later version.
+**
+** This program is distributed in the hope that it will be useful,
+** but WITHOUT ANY WARRANTY; without even the implied warranty of
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+** GNU General Public License for more details.
+**
+** You should have received a copy of the GNU General Public License
+** along with this program; if not, write to the Free Software
+** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+**/
+?>
+<?php
+ class CHostsInfo extends CTable
+ {
+ var $style;
+ function CHostsInfo($style = STYLE_HORISONTAL)
+ {
+ parent::CTable(NULL,"hosts_info");
+ $this->SetOrientation($style);
+ }
+
+ function SetOrientation($value)
+ {
+ if($value != STYLE_HORISONTAL && $value != STYLE_VERTICAL)
+ return $this->error("Incorrect value for SetOrientation [$value]");
+
+ $this->style = $value;
+ }
+
+ function UpdateInfo()
+ {
+ $this->CleanItems();
+
+ $db_host_cnt = DBselect("select count(*) as cnt from hosts where available=".HOST_AVAILABLE_TRUE);
+ $host_cnt = DBfetch($db_host_cnt);
+ $avail = $host_cnt["cnt"];
+
+ $db_host_cnt = DBselect("select count(*) as cnt from hosts where available=".HOST_AVAILABLE_FALSE);
+ $host_cnt = DBfetch($db_host_cnt);
+ $notav = $host_cnt["cnt"];
+
+ $db_host_cnt = DBselect("select count(*) as cnt from hosts where available=".HOST_AVAILABLE_UNKNOWN);
+ $host_cnt = DBfetch($db_host_cnt);
+ $uncn = $host_cnt["cnt"];
+
+ $header = new CCol(S_HOSTS_INFO,"header");
+ if($this->style == STYLE_HORISONTAL)
+ $header->SetColspan(3);
+
+ $this->AddRow($header);
+
+ $avail = new CCol($avail." ".S_AVAILABLE, "avail");
+ $notav = new CCol($notav." ".S_NOT_AVAILABLE, "notav");
+ $uncn = new CCol($uncn." ".S_UNKNOWN, "uncn");
+
+ if($this->style == STYLE_HORISONTAL)
+ {
+ $this->AddRow(array($avail, $notav, $uncn));
+ }
+ else
+ {
+ $this->AddRow($avail);
+ $this->AddRow($notav);
+ $this->AddRow($uncn);
+ }
+ }
+ function Show()
+ {
+ $this->UpdateInfo();
+ parent::Show();
+ }
+ }
+?>