summaryrefslogtreecommitdiffstats
path: root/frontends/php/actionconf.php
diff options
context:
space:
mode:
authorosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-13 14:58:56 +0000
committerosmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-03-13 14:58:56 +0000
commitf459deea77b1b44cff468c5b22fb5137f502a33b (patch)
treefcd609083ab86b8920b566773332e2f5a53eaca9 /frontends/php/actionconf.php
parentaf58b99d1c253e38600ef774ed710f529bd048d9 (diff)
downloadzabbix-f459deea77b1b44cff468c5b22fb5137f502a33b.tar.gz
zabbix-f459deea77b1b44cff468c5b22fb5137f502a33b.tar.xz
zabbix-f459deea77b1b44cff468c5b22fb5137f502a33b.zip
- removed support of action repeats from GUI (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@3889 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/actionconf.php')
-rw-r--r--frontends/php/actionconf.php18
1 files changed, 2 insertions, 16 deletions
diff --git a/frontends/php/actionconf.php b/frontends/php/actionconf.php
index 8f6826cd..273e0493 100644
--- a/frontends/php/actionconf.php
+++ b/frontends/php/actionconf.php
@@ -47,13 +47,9 @@ include_once "include/page_header.php";
"subject"=> array(T_ZBX_STR, O_OPT, NULL, NOT_EMPTY, '{actiontype}==0&&isset({save})'),
"message"=> array(T_ZBX_STR, O_OPT, NULL, NOT_EMPTY, '{actiontype}==0&&isset({save})'),
"scripts"=> array(T_ZBX_STR, O_OPT, NULL, NOT_EMPTY, '{actiontype}==1&&isset({save})'),
- "repeat"=> array(T_ZBX_INT, O_OPT, NULL, IN("0,1"), 'isset({save})'),
"status"=> array(T_ZBX_INT, O_OPT, NULL, IN("0,1"), 'isset({save})'),
"evaltype"=> array(T_ZBX_INT, O_OPT, NULL, IN(ACTION_EVAL_TYPE_AND_OR.','.ACTION_EVAL_TYPE_AND.','.ACTION_EVAL_TYPE_OR), 'isset({save})'),
- "maxrepeats"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535),'{repeat}==1&&isset({save})'),
- "repeatdelay"=> array(T_ZBX_INT, O_OPT, NULL, BETWEEN(0,65535),'{repeat}==1&&isset({save})'),
-
"conditions"=> array(NULL, O_OPT, NULL, NULL, NULL),
// "conditions[i][type]"=> array(T_ZBX_INT, O_OPT, NULL, NULL, NULL),
// "conditions[i][operator]"=> array(T_ZBX_INT, O_OPT, NULL, NULL, NULL),
@@ -103,12 +99,6 @@ include_once "include/page_header.php";
}
elseif(isset($_REQUEST["save"]))
{
- if($_REQUEST["repeat"]==0)
- {
- $_REQUEST["maxrepeats"]=0;
- $_REQUEST["repeatdelay"]=600;
- }
-
if(isset($_REQUEST["actionid"]))
{
// TODO check permission by new value.
@@ -116,8 +106,7 @@ include_once "include/page_header.php";
$result = update_action($actionid,
$_REQUEST['actiontype'],$_REQUEST['userid'],
$_REQUEST["subject"], $_REQUEST["message"],$_REQUEST["recipient"],
- $_REQUEST["maxrepeats"],$_REQUEST["repeatdelay"],$_REQUEST["status"],
- $_REQUEST["scripts"],$_REQUEST["evaltype"]);
+ $_REQUEST["status"],$_REQUEST["scripts"],$_REQUEST["evaltype"]);
show_messages($result,S_ACTION_UPDATED,S_CANNOT_UPDATE_ACTION);
} else {
@@ -127,8 +116,7 @@ include_once "include/page_header.php";
$actionid=add_action(
$_REQUEST['actiontype'],$_REQUEST['userid'],
$_REQUEST["subject"],$_REQUEST["message"],$_REQUEST["recipient"],
- $_REQUEST["maxrepeats"],$_REQUEST["repeatdelay"],$_REQUEST["status"],
- $_REQUEST["scripts"],$_REQUEST["evaltype"]);
+ $_REQUEST["status"],$_REQUEST["scripts"],$_REQUEST["evaltype"]);
$result=$actionid;
show_messages($result,S_ACTION_ADDED,S_CANNOT_ADD_ACTION);
@@ -281,7 +269,6 @@ include_once "include/page_header.php";
S_CONDITIONS,
$_REQUEST["actiontype"] == ACTION_TYPE_MESSAGE ? S_SEND_MESSAGE_TO : S_REMOTE_COMMAND,
$_REQUEST["actiontype"] == ACTION_TYPE_MESSAGE ? S_SUBJECT : NULL,
- S_REPEATS,
S_STATUS));
$result=DBselect("select * from actions where actiontype=".$_REQUEST["actiontype"].
@@ -350,7 +337,6 @@ include_once "include/page_header.php";
$conditions,
$recipient,
$subject,
- $row["maxrepeats"] == 0 ? S_NO_REPEATS : $row["maxrepeats"],
$status
));
}