-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
45 lines (38 loc) · 1.08 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html>
<head>
<title>Cyclone</title>
<link rel="stylesheet" href="./css/index.css" type="text/css">
<script type='text/javascript' src='./js/jquery.min.js'></script>
<script type='text/javascript' src='./js/util_general.js'></script>
<script type='text/javascript'>
function fOnBodyLoad()
{
fConsoleLog('fOnBodyLoad');
$('#btn_cron').click( function(){ fOnBtnCron($(this)) } );
$('#btn_rule').click( function(){ fOnBtnRule($(this)) } );
$('#btn_location').click( function(){ fOnBtnLocation($(this)) } );
}
function fOnBtnCron(sender)
{
window.location = 'cron.php';
}
function fOnBtnRule(sender)
{
window.location = 'ui_rules.php';
}
function fOnBtnLocation(sender)
{
window.location = 'srv_ext_trigger_test.html';
}
</script>
</head>
<body onLoad="fOnBodyLoad();">
<img src='images/clock.png' id='btn_cron' class='img_button'> Cron<br/>
<br/>
<img src='images/list.png' id='btn_rule' class='img_button'> Rules<br/>
<br/>
<img src='images/location.png' id='btn_location' class='img_button'> External Trigger<br/>
<?php
?>
</body>
</html>