summaryrefslogtreecommitdiffstats
path: root/frontends/php/sysmaps.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-12 10:20:29 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-11-12 10:20:29 +0000
commitc0c1b50df1ec73e0cd6b72c7cc10197e6cc44a0a (patch)
tree43b9a3f70cc15cfcc674fafbd0c8a3829417331e /frontends/php/sysmaps.php
parentd7d135227396a5b3cede974e94c25032a1bc69d2 (diff)
downloadzabbix-c0c1b50df1ec73e0cd6b72c7cc10197e6cc44a0a.tar.gz
zabbix-c0c1b50df1ec73e0cd6b72c7cc10197e6cc44a0a.tar.xz
zabbix-c0c1b50df1ec73e0cd6b72c7cc10197e6cc44a0a.zip
- [DEV-66] added sorting to screens (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@4996 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/sysmaps.php')
-rw-r--r--frontends/php/sysmaps.php15
1 files changed, 12 insertions, 3 deletions
diff --git a/frontends/php/sysmaps.php b/frontends/php/sysmaps.php
index 76198970..585e7f62 100644
--- a/frontends/php/sysmaps.php
+++ b/frontends/php/sysmaps.php
@@ -53,6 +53,7 @@ include_once "include/page_header.php";
);
check_fields($fields);
+ validate_sort_and_sortorder();
if(isset($_REQUEST["sysmapid"]))
{
@@ -115,10 +116,18 @@ include_once "include/page_header.php";
{
show_table_header(S_MAPS_BIG);
$table = new CTableInfo(S_NO_MAPS_DEFINED);
- $table->SetHeader(array(S_NAME,S_WIDTH,S_HEIGHT,S_MAP));
+ $table->SetHeader(array(
+ make_sorting_link(S_NAME,'sm.name'),
+ make_sorting_link(S_WIDTH,'sm.width'),
+ make_sorting_link(S_HEIGHT,'sm.height'),
+ S_MAP
+ ));
- $result = DBselect("select sysmapid,name,width,height from sysmaps ".
- ' where '.DBin_node('sysmapid').' order by name');
+ $result = DBselect('SELECT sm.sysmapid,sm.name,sm.width,sm.height '.
+ ' FROM sysmaps sm'.
+ ' WHERE '.DBin_node('sm.sysmapid').
+ order_by('sm.name,sm.width,sm.height','sm.sysmapid'));
+
while($row=DBfetch($result))
{
if(!sysmap_accessiable($row["sysmapid"],PERM_READ_WRITE)) continue;