CS_Event_Console
| Question | Description | ResponseType | Format | Text | Help | PreLogic | PostLogic |
| CS_Process_Select | Control System Process Selector | NULL | 1 | | | echo "
";
echo "1. Select a process: ";
if ($prm=="SetProcess")
{
$lblProcess=$_REQUEST['lblProcess'];
$_SESSION['CS_Process']=$lblProcess;
$_SESSION['CS_Event']='';
}
else $lblProcess=$_SESSION['CS_Process'];
echo "";
| |
| CS_Event_Select | Control System Event Selector | NULL | RADIO | | | $CS_Process=$_SESSION['CS_Process'];
if ($CS_Process>0)
{
echo ~
~;
echo ~2. Select an event: ~;
if ($prm==~SetEvent~)
{
$lblEvent=$_REQUEST['lblEvent'];
$_SESSION['CS_Event']=$lblEvent;
}
else $lblEvent=$_SESSION['CS_Event'];
echo ~~;
} | |
| CS_Cases_Entry | Control System Cases Entry | NULL | 1 | | | $CS_Event=$_SESSION['CS_Event'];if ($CS_Event!=""){ echo " 3. Enter the cases for which the selected event is to be applied (one case per line):
"; $lblCases=$_REQUEST['lblCases']; echo "";} | $lblCases=$_REQUEST['lblCases'];if ($lblCases!=''){ $CS_EventId=$_SESSION['CS_Event']; $UserId=$_SESSION['UserId']; $cases = explode("", $lblCases); for ($i=0; $i |
| CS_Post_Events | Control System Post Events | Button | BUTTON | Post the Events | | echo " 4. ";
| |
|