summaryrefslogtreecommitdiffstats
path: root/frontends/php/scripts.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-29 08:41:15 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-04-29 08:41:15 +0000
commit131500f24e0298058a33aa79ced9d01111c7b778 (patch)
tree4a0f898d49b63aa04c783e4a6620fb7256e9f695 /frontends/php/scripts.php
parent4c6e81cdcb98236655c4612143a2fb74fa28b585 (diff)
downloadzabbix-131500f24e0298058a33aa79ced9d01111c7b778.tar.gz
zabbix-131500f24e0298058a33aa79ced9d01111c7b778.tar.xz
zabbix-131500f24e0298058a33aa79ced9d01111c7b778.zip
- [DEV-158] added standart sorting to screens (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5665 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/scripts.php')
-rw-r--r--frontends/php/scripts.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/frontends/php/scripts.php b/frontends/php/scripts.php
index 95875cf5..e6fa7b1e 100644
--- a/frontends/php/scripts.php
+++ b/frontends/php/scripts.php
@@ -198,6 +198,8 @@ if(isset($_REQUEST['form'])){
$frmScr->Show();
}
else {
+ validate_sort_and_sortorder('s.name',ZBX_SORT_UP);
+
$form = new CForm();
$form->SetName('scripts');
$form->AddOption('id','scripts');
@@ -206,8 +208,8 @@ else {
$table=new CTableInfo(S_NO_SCRIPTS_DEFINED);
$table->setHeader(array(
- array(new CCheckBox('all_scripts',null,"CheckAll('".$form->GetName()."','all_scripts');"),S_NAME),
- S_COMMAND,
+ array(new CCheckBox('all_scripts',null,"CheckAll('".$form->GetName()."','all_scripts');"),make_sorting_link(S_NAME,'s.name')),
+ make_sorting_link(S_COMMAND,'s.command'),
S_USER_GROUP,
S_HOST_GROUP,
S_HOST_ACCESS
@@ -217,7 +219,7 @@ else {
$sql = 'SELECT s.* '.
' FROM scripts s '.
' WHERE '.DBin_node('s.scriptid').
- ' ORDER BY s.scriptid ASC';
+ order_by('s.name,s.command');
$scripts=DBselect($sql);