1
|
<?
|
2
|
/* $Id: */
|
3
|
|
4
|
/*
|
5
|
* Two Arrays the hold the information for what javascript files
|
6
|
* need to be loaded at the top and or bottom of each page listed
|
7
|
* in the arrays.
|
8
|
*/
|
9
|
|
10
|
$top_javascript_files = array();
|
11
|
$bottom_javascript_files = array();
|
12
|
|
13
|
|
14
|
$top_javascript_files['firewall_rules_edit.php'][] = 'autosuggest.js';
|
15
|
$top_javascript_files['firewall_rules_edit.php'][] = 'suggestions.js';
|
16
|
$top_javascript_files['firewall_rules_edit.php'][] = 'firewall_rules_edit.js';
|
17
|
|
18
|
?>
|