summaryrefslogtreecommitdiffstats
path: root/frontends/php/exp_imp.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-12-05 14:05:45 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2006-12-05 14:05:45 +0000
commite45c46349be33afdca75fb4f17261de1783ed49a (patch)
tree6d63ec29f1eb8b1da9c482fe0624ce8916802a2e /frontends/php/exp_imp.php
parent3265938a7cd0ef277bfc550ff47b60ed71b417de (diff)
downloadzabbix-e45c46349be33afdca75fb4f17261de1783ed49a.tar.gz
zabbix-e45c46349be33afdca75fb4f17261de1783ed49a.tar.xz
zabbix-e45c46349be33afdca75fb4f17261de1783ed49a.zip
- improved selection of elements for exporting (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3568 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/exp_imp.php')
-rw-r--r--frontends/php/exp_imp.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/frontends/php/exp_imp.php b/frontends/php/exp_imp.php
index b248d3dc..b9705e1a 100644
--- a/frontends/php/exp_imp.php
+++ b/frontends/php/exp_imp.php
@@ -281,15 +281,21 @@ include_once "include/page_header.php";
$table = new CTableInfo(S_NO_HOSTS_DEFINED);
$table->SetHeader(array(
- S_NAME,
+ array( new CCheckBox("all_hosts",true, "CheckAll('".$form->GetName()."','all_hosts','hosts');"),
+ S_NAME),
S_IP,
S_PORT,
S_STATUS,
- S_ITEMS,
- S_TRIGGERS,
- S_GRAPHS
- /*,
- S_SCREENS */
+ array( new CCheckBox("all_items",true, "CheckAll('".$form->GetName()."','all_items','items');"),
+ S_ITEMS),
+ array( new CCheckBox("all_triggers",true, "CheckAll('".$form->GetName()."','all_triggers','triggers');"),
+ S_TRIGGERS),
+ array( new CCheckBox("all_graphs",true, "CheckAll('".$form->GetName()."','all_graphs','graphs');"),
+ S_GRAPHS)
+ /*
+ array( new CCheckBox("all_screens",true, "CheckAll('".$form->GetName()."','all_screens','screens');")
+ S_GRAPHS)
+ */
));
$sql = "select h.* from";