当前位置: 首页>>代码示例>>PHP>>正文


PHP Util::get_css_id方法代码示例

本文整理汇总了PHP中Util::get_css_id方法的典型用法代码示例。如果您正苦于以下问题:PHP Util::get_css_id方法的具体用法?PHP Util::get_css_id怎么用?PHP Util::get_css_id使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Util的用法示例。


在下文中一共展示了Util::get_css_id方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: SendHeader

function SendHeader($established)
{
    global $self, $m_opt, $sm_opt, $h_opt;
    global $TabList;
    header("Content-type: text/html; charset=ISO-8859-1");
    ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<meta http-equiv="Cache-Control" content="no-cache"/>
	<meta http-equiv="Pragma" content="no-cache"/>
	<link rel="stylesheet" type="text/css" href="../style/av_common.css?t=<?php 
    echo Util::get_css_id();
    ?>
">
	<link rel="stylesheet" type="text/css" href="../style/nfsen/nfsen.css">

	<script type="text/javascript" src="/ossim/js/jquery.min.js"></script>
	<script type='text/javascript' src="/ossim/js/notification.js"></script>
	<script type='text/javascript' src='/ossim/js/utils.js'></script>

<?php 
    include '../host_report_menu.php';
    if (!$established) {
        return;
    }
    $_tab = array_key_exists('tab', $_SESSION) ? $_SESSION['tab'] : 0;
    if (array_key_exists('tleft', $_SESSION)) {
        $str = $TabList[$_tab] == 'Details' ? strftime("%b %d %Y - %H:%M", $_SESSION['tleft']) : 'Overview';
    } else {
        $str = '';
    }
    ?>
    <title>
    <?php 
    if ($_REQUEST["login"]) {
        $name = strip_tags($_POST["name"]);
        $_SESSION["_nfsen_title"] = $name . " - Network Traffic";
    } elseif (empty($_SESSION["_nfsen_title"])) {
        $_SESSION["_nfsen_title"] = _("NFSEN");
    }
    echo Util::htmlentities($_SESSION["_nfsen_title"]) . _(' - Profile');
    ?>
 <?php 
    echo Util::htmlentities($_SESSION['profile']) . " {$str}";
    ?>
</title>

    <?php 
    $refresh = $_SESSION['refresh'];
    if ($TabList[$_tab] != 'Details' && $refresh > 0) {
        print "<meta HTTP-EQUIV='Refresh' CONTENT='" . Util::htmlentities($refresh) . "; URL=" . Util::htmlentities($self) . "?bookmark=" . Util::htmlentities($_SESSION['bookmark']) . "&bypassexpirationupdate=1'>\n";
    }
    if ($TabList[$_tab] == 'Details') {
        ?>
	   <link rel="stylesheet" type="text/css" href="../style/nfsen/detail.css">
	<?php 
    }
    if ($TabList[$_tab] == 'Stats') {
        ?>
	   <link rel="stylesheet" type="text/css" href="../style/nfsen/profileadmin.css">
	<?php 
    }
    if ($TabList[$_tab] == 'Alerts') {
        ?>
	   <link rel="stylesheet" type="text/css" href="../style/nfsen/alerting.css">
	   <?php 
    }
    ?>

	<script type="text/javascript" src="js/global.js"></script>
	<script type="text/javascript" src="js/menu.js"></script>
    <script type="text/javascript" src="../js/jquery.simpletip.js"></script>
    
    <!-- JQuery TipTip: -->
    <link rel="stylesheet" type="text/css" href="/ossim/style/tipTip.css"/>
    <script type="text/javascript" src="/ossim/js/jquery.tipTip-ajax.js"></script>
    
	<script type="text/javascript">
		function postload() {

		     // menu.php postload
			 $('#interface').change(function() {                        
                 send($(this).val(), $('#interface option:selected').text());
             });
             
             <?php 
    if (isset($_POST['ip'])) {
        ?>
                 send('<?php 
        echo Util::htmlentities($_POST['ip']);
        ?>
', $('#interface option:selected').text());
                 <?php 
    }
    ?>
             // ************

             $('.scriptinfo').tipTip({
                 defaultPosition: "down",
//.........这里部分代码省略.........
开发者ID:AntBean,项目名称:alienvault-ossim,代码行数:101,代码来源:nfsen.php

示例2: _

$chk_resend_events[1] = $resend_events == 1 ? "checked='checked' {$dis_resend}" : "{$dis_resend}";
$chk_resend_alarms[0] = $resend_alarms == 0 ? "checked='checked' {$dis_resend}" : "{$dis_resend}";
$chk_resend_alarms[1] = $resend_alarms == 1 ? "checked='checked' {$dis_resend}" : "{$dis_resend}";
$back_url = Menu::get_menu_url("/ossim/server/server.php", "configuration", "deployment", "components", "servers");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	<title> <?php 
echo _('OSSIM Framework');
?>
 </title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
	<meta http-equiv="Pragma" content="no-cache"/>
	<link rel="stylesheet" type="text/css" href="../style/av_common.css?t=<?php 
echo Util::get_css_id();
?>
"/>
	<script type="text/javascript" src="../js/jquery.min.js"></script>
	<script type="text/javascript" src="../js/jquery-ui.min.js"></script>
	<script type="text/javascript" src="../js/notification.js"></script>
	<script type="text/javascript" src="../js/ajax_validator.js"></script>
	<script type="text/javascript" src="../js/messages.php"></script>
	<script type="text/javascript" src="../js/jquery.elastic.source.js" charset="utf-8"></script>
	<script type="text/javascript" src="../js/utils.js"></script>
	<script type="text/javascript" src="../js/combos.js"></script>
	<script type="text/javascript" src="../js/token.js"></script>
	
	<!-- JQuery Dynatree: -->
	<link rel="stylesheet" type="text/css" href="../style/tree.css" />
	<script type="text/javascript" src="../js/jquery.dynatree.js"></script>
开发者ID:AntBean,项目名称:alienvault-ossim,代码行数:31,代码来源:newserverform.php

示例3: _

    }
}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <title><?php 
echo _('OSSIM Framework');
?>
</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <meta http-equiv="Pragma" content="no-cache">
        <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
?>
    </head>

    <body>
    <?php 
if ($data['status'] != 'error') {
    try {
        $db = new ossim_db();
        $conn = $db->connect();
        $asset_data = array('external' => $external, 'descr' => $descr, 'asset_value' => $asset_value, 'latitude' => $latitude, 'longitude' => $longitude, 'zoom' => $zoom, 'os' => $os, 'model' => $model, 'sensors' => $sensors, 'devices' => $devices, 'icon' => $icon);
        Asset_host::bulk_save_in_db($conn, $asset_data);
        $data['status'] = 'OK';
        $data['data'] = _('Your changes have been saved');
        $db->close();
开发者ID:jackpf,项目名称:ossim-arc,代码行数:31,代码来源:bk_save_assets.php

示例4: _

$sensors = Av_sensor::get_basic_list($conn);
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title><?php 
echo _('OSSIM Framework');
?>
</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache">

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE));
if ($s_type == 'nmap') {
    $_files[] = array('src' => 'jquery.autocomplete.css', 'def_path' => TRUE);
}
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'jquery.elastic.source.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => '/av_schedule_scan/js/av_schedule_scan.js.php', 'def_path' => FALSE));
if ($s_type == 'nmap') {
    $_files[] = array('src' => 'jquery.autocomplete.pack.js', 'def_path' => TRUE);
    $_files[] = array('src' => '/av_scan.js.php', 'def_path' => TRUE);
    $_files[] = array('src' => '/av_schedule_scan/js/asset_scan_helpers.js.php', 'def_path' => FALSE);
}
Util::print_include_files($_files, 'js');
?>

    <script type="text/javascript">
开发者ID:alienfault,项目名称:ossim,代码行数:31,代码来源:schedule_scan_form.php

示例5: _

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title><?php 
echo _('OSSIM Framework');
?>
</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache"/>
    <meta http-equiv="X-UA-Compatible" content="IE=7"/>

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => '/environment/detection/hids-agent_form.css', 'def_path' => TRUE), array('src' => 'jquery.autocomplete.css', 'def_path' => TRUE), array('src' => 'tree.css', 'def_path' => TRUE), array('src' => '/common/grid_system.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'jquery.autocomplete.pack.js', 'def_path' => TRUE), array('src' => 'jquery.cookie.js', 'def_path' => TRUE), array('src' => 'jquery.dynatree.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => '/ossec/js/ossec_msg.php', 'def_path' => FALSE), array('src' => '/ossec/js/agents.js', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

    <script type="text/javascript">

        $(document).ready(function() {

            asset_tree_by_sensor('c_tree', '<?php 
echo $sensor_id;
?>
');
开发者ID:jackpf,项目名称:ossim-arc,代码行数:30,代码来源:agent_form.php

示例6: _

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title><?php 
echo _('OSSIM Framework');
?>
</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache"/>
    <meta http-equiv="X-UA-Compatible" content="IE=7"/>

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'jquery.dataTables.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => 'jquery.switch.css', 'def_path' => TRUE), array('src' => 'jquery.dropdown.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'jquery.elastic.source.js', 'def_path' => TRUE), array('src' => 'jquery.dataTables.js', 'def_path' => TRUE), array('src' => 'jquery.dataTables.plugins.js', 'def_path' => TRUE), array('src' => 'jquery.switch.js', 'def_path' => TRUE), array('src' => 'jquery.dropdown.js', 'def_path' => TRUE), array('src' => 'greybox.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => '/av_schedule_scan/js/av_schedule_scan.js.php', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

    <script type="text/javascript">

        $(document).ready(function()
        {
            if (typeof parent.is_lightbox_loaded == 'function' && parent.is_lightbox_loaded(window.name))
            {
                $('#c_lmenu').hide();
            }
开发者ID:alienfault,项目名称:ossim,代码行数:30,代码来源:list.php

示例7: PrintBASESubHeader

function PrintBASESubHeader($page_title, $page_name, $back_link, $refresh = 0, $page = "")
{
    global $db, $timetz, $debug_mode, $BASE_VERSION, $BASE_path, $BASE_urlpath, $html_no_cache, $max_script_runtime, $Use_Auth_System, $stat_page_refresh_time, $refresh_stat_page, $ossim_servers, $sensors, $hosts, $database_servers, $DBlib_path, $DBtype, $db_connect_method, $alert_dbname, $alert_host, $alert_port, $alert_user, $alert_password, $entities;
    if (ini_get("safe_mode") != true) {
        set_time_limit($max_script_runtime);
    }
    ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=<?php 
    echo gettext("iso-8859-1");
    ?>
"/>
            <?php 
    if ($html_no_cache == 1) {
        ?>
<meta http-equiv="pragma" content="no-cache"/><?php 
    }
    ?>
            <?php 
    if ($refresh == 1 && !$_SESSION['norefresh']) {
        PrintFreshPage($refresh_stat_page, $stat_page_refresh_time);
    }
    ?>

            <!-- Included Styles -->
            <link rel="stylesheet" type="text/css" href="/ossim/style/av_common.css?t=<?php 
    echo Util::get_css_id();
    ?>
"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/analysis/security_events/security_events.css"/>

            <link rel="stylesheet" type="text/css" href="/ossim/style/jquery-ui.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/jquery.tag-it.css"/>
            <!-- <link rel="stylesheet" type="text/css" href="/ossim/style/flexigrid.css"/> -->
            <link rel="stylesheet" type="text/css" href="/ossim/style/jquery.autocomplete.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/tipTip.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/jslider.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/jquery.switch.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/datepicker.css"/>
            <link rel="stylesheet" type="text/css" href="/ossim/style/jquery.dropdown.css"/>

            <!-- Manual Styles -->
            <style type="text/css">

                #adv_search_button
                {
                    margin:5px 0px 0px 0px;
                    width:239px;
                }
                #views table, #taxonomy table, #mfilters table, #report table  {
                    background:none repeat scroll 0 0 #FAFAFA;
                    border:1px solid #BBBBBB;
                    color:black;
                    text-align:center;
                   -moz-border-radius:8px 8px 8px 8px;
                   padding: 2px;
                }

                #views table tr td, #taxonomy table tr td, #mfilters table tr td, #report table tr td{
                    padding: 0;
                }
                #views table tr td input, #views table,
                #taxonomy table tr td input, #taxonomy table,
                #taxonomy table tr td input, #report table,
                #mfilters table tr td input, #mfilters table
                {
                    font-size: 0.9em;
                    line-height: 0.5em;
                }

                #views table tr td ul{
                    padding: 0px;
                }
                #views table tr td ul li{
                    padding: 0px 0px 0px 12px;
                    list-style-type: none;
                    text-align: left;
                    margin: 0px;
                    clear:left;
                    position: relative;
                    height: 23px;
                    line-height: 1em;
                }
                .margin0
                {
                    margin: 0px;
                }
                .left_np
                {
                    text-align: left;
                }
                .par{
                    background: #f2f2f2;
                }
                .impar{
                    background: #fff;
                }
                .padding_right_5
//.........这里部分代码省略.........
开发者ID:jackpf,项目名称:ossim-arc,代码行数:101,代码来源:base_output_html.inc.php

示例8: _

}
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title><?php 
echo _('OSSIM Framework');
?>
</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache"/>

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => '/environment/assets/asset_discovery.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => 'av_scan.js.php', 'def_path' => TRUE));
Util::print_include_files($_files, 'js');
?>

    <style type="text/css">
        .c_actions
        {
            padding: 20px;
            text-align: center;
        }

        .t_adv_options
        {
开发者ID:alienfault,项目名称:ossim,代码行数:31,代码来源:new_scan.php

示例9: _

$conn = $db->connect();
$avc_list = Av_center::get_avc_list($conn);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
    <title><?php 
echo _("OSSIM Framework");
?>
</title>
    <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache"/>

    <?php 
//CSS Files
$_files = array(array('src' => '/av_center/js/codemirror/codemirror.css', 'def_path' => FALSE), array('src' => 'tree.css', 'def_path' => TRUE), array('src' => 'jquery.autocomplete.css', 'def_path' => TRUE), array('src' => '/js/jqplot/jquery.jqplot.css', 'def_path' => FALSE), array('src' => 'xbreadcrumbs.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => 'jquery.dataTables.css', 'def_path' => TRUE), array('src' => 'ui.multiselect.css', 'def_path' => TRUE), array('src' => 'jquery.contextMenu.css', 'def_path' => TRUE), array('src' => 'progress.css', 'def_path' => TRUE), array('src' => 'jquery-ui-1.7.custom.css', 'def_path' => TRUE), array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => '/av_center/js/jquery.min.js', 'def_path' => FALSE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'jquery.dynatree.js', 'def_path' => TRUE), array('src' => 'jquery.cookie.js', 'def_path' => TRUE), array('src' => 'jquery.autocomplete.pack.js', 'def_path' => TRUE), array('src' => 'jquery.elastic.source.js', 'def_path' => TRUE), array('src' => 'jquery.sparkline.js', 'def_path' => TRUE), array('src' => 'jqplot/jquery.jqplot.min.js', 'def_path' => TRUE), array('src' => 'jqplot/plugins/jqplot.pieRenderer.js', 'def_path' => TRUE), array('src' => 'jquery.dataTables.js', 'def_path' => TRUE), array('src' => 'jquery.dataTables.plugins.js', 'def_path' => TRUE), array('src' => 'jquery.tmpl.1.1.1.js', 'def_path' => TRUE), array('src' => 'jquery.contextMenu.js', 'def_path' => TRUE), array('src' => 'ui.multiselect.js', 'def_path' => TRUE), array('src' => 'greybox.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'av_progress_bar.js.php', 'def_path' => TRUE), array('src' => '/av_center/js/codemirror/codemirror.js', 'def_path' => FALSE), array('src' => '/av_center/js/codemirror/mode/xmlpure/xmlpure.js', 'def_path' => FALSE), array('src' => '/av_center/js/codemirror/mode/properties/properties.js', 'def_path' => FALSE), array('src' => '/av_center/js/codemirror/util/dialog.js', 'def_path' => FALSE), array('src' => '/av_center/js/codemirror/util/searchcursor.js', 'def_path' => FALSE), array('src' => '/av_center/js/codemirror/util/search.js', 'def_path' => FALSE), array('src' => '/av_center/js/config.js', 'def_path' => FALSE), array('src' => '/av_center/js/xbreadcrumbs.js', 'def_path' => FALSE), array('src' => '/av_center/js/jquery.tipTip.js', 'def_path' => FALSE), array('src' => '/av_center/js/avc_msg.php', 'def_path' => FALSE), array('src' => '/av_center/js/progress_bar.js', 'def_path' => FALSE), array('src' => '/av_center/js/vprogress_bar.js', 'def_path' => FALSE), array('src' => '/av_center/js/common.js', 'def_path' => FALSE), array('src' => '/av_center/js/change_control.js', 'def_path' => FALSE), array('src' => '/av_center/js/av_tree.js', 'def_path' => FALSE), array('src' => '/av_center/js/av_center.js', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

    <!-- JQplot: -->
    <!--[if IE]><script language="javascript" type="text/javascript" src="../js/jqplot/excanvas.js"></script><![endif]-->

    <script type='text/javascript'>

        $(document).ready(function(){

            //JQplot
            $.jqplot.config.enablePlugins = true;
开发者ID:jackpf,项目名称:ossim-arc,代码行数:31,代码来源:index.php

示例10: get_tags

$tags = get_tags($idm_enabled);

if ($opensource)
{
    unset($tags['PLUGIN_SOURCE_TYPE']);
    unset($tags['PLUGIN_SID_CATEGORY']);
    unset($tags['PLUGIN_SID_SUBCATEGORY']);
}
//print_r($tags);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title> <?php echo _('SIEM Custom View'); ?> </title>
  <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
    <link rel="stylesheet" type="text/css" href="../style/av_common.css?t=<?php echo Util::get_css_id() ?>"/>
    <link type="text/css" rel="stylesheet" href="../style/jquery-ui-1.7.custom.css" />
    <link type="text/css" rel="stylesheet" href="../style/ui.multiselect.css" rel="stylesheet" />
    <style type='text/css'>
        /*Multiselect loading styles*/
        #ms_body
        {
          height: 297px;
        }

        #load_ms
        {
            margin:auto;
            padding-top: 105px;
            text-align:center;
        }
开发者ID:alienfault,项目名称:ossim,代码行数:31,代码来源:custom_view_edit.php

示例11: _



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title><?php 
echo _('OSSIM Framework');
?>
</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
    <meta http-equiv="Pragma" content="no-cache"/>
    <meta http-equiv="X-UA-Compatible" content="IE=7"/>

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => '/common/grid_system.css', 'def_path' => TRUE), array('src' => '/environment/assets/deploy-hids.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'greybox.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => '/av_asset/asset/js/deploy_hids.js.php', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

    <script type="text/javascript">

        $(document).ready(function() {

            var action = '<?php 
echo $action;
?>
';
开发者ID:jackpf,项目名称:ossim-arc,代码行数:28,代码来源:bk_deploy_hids_form.php

示例12: _

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	
	<title> <?php 
echo _('AlienVault ' . (Session::is_pro() ? 'USM' : 'OSSIM'));
?>
 </title>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
	<meta http-equiv="Pragma" content="no-cache"/>

    <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?only_common=1&t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'lightbox.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => 'jquery.select.css', 'def_path' => TRUE), array('src' => 'assets/asset_details.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => 'jquery.select.js', 'def_path' => TRUE), array('src' => 'av_plugin_select.js.php', 'def_path' => TRUE));
Util::print_include_files($_files, 'js');
?>


	<script type="text/javascript">

    	var __vendor_list = <?php 
echo json_encode($vendors);
?>
;
    	
    	function apply_plugin_callback(data)
开发者ID:AntBean,项目名称:alienvault-ossim,代码行数:31,代码来源:enable_plugin.php

示例13: _

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <title><?php 
echo _("OSSIM Framework");
?>
</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
        <meta http-equiv="Pragma" content="no-cache"/>

        <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'message_center/pop_up_notifications.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => '/message_center/js/pop_up_notifications.js.php', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

        <script type='text/javascript'>

            $(document).ready(function()
            {
                <?php 
switch ($n_type) {
    case 'track_usage_information':
        ?>
                        $('[data-bind="send_tui"]').off('click').on('click', function(){
开发者ID:jackpf,项目名称:ossim-arc,代码行数:31,代码来源:pop_up_notifications.php

示例14: _

$db->close();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <title><?php 
echo _("OSSIM Framework");
?>
</title>
        <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
        <meta name="viewport" content="initial-scale=1.0, user-scalable=no"/>
        <meta http-equiv="Pragma" content="no-cache"/>

        <?php 
//CSS Files
$_files = array(array('src' => 'av_common.css?t=' . Util::get_css_id(), 'def_path' => TRUE), array('src' => 'jquery-ui.css', 'def_path' => TRUE), array('src' => 'jquery.dataTables.css', 'def_path' => TRUE), array('src' => 'jquery.autocomplete.css', 'def_path' => TRUE), array('src' => 'jquery.switch.css', 'def_path' => TRUE), array('src' => 'tree.css', 'def_path' => TRUE), array('src' => 'tipTip.css', 'def_path' => TRUE), array('src' => 'av_icon.css', 'def_path' => TRUE), array('src' => '/assets/asset_form.css', 'def_path' => TRUE), array('src' => 'jquery.dropdown.css', 'def_path' => TRUE));
Util::print_include_files($_files, 'css');
//JS Files
$_files = array(array('src' => 'jquery.min.js', 'def_path' => TRUE), array('src' => 'jquery-ui.min.js', 'def_path' => TRUE), array('src' => 'jquery.base64.js', 'def_path' => TRUE), array('src' => 'jquery.cookie.js', 'def_path' => TRUE), array('src' => 'jquery.tmpl.1.1.1.js', 'def_path' => TRUE), array('src' => 'jquery.dynatree.js', 'def_path' => TRUE), array('src' => 'jquery.elastic.source.js', 'def_path' => TRUE), array('src' => 'jquery.autocomplete_geomod.js', 'def_path' => TRUE), array('src' => 'jquery.dataTables.js', 'def_path' => TRUE), array('src' => 'greybox.js', 'def_path' => TRUE), array('src' => 'notification.js', 'def_path' => TRUE), array('src' => 'ajax_validator.js', 'def_path' => TRUE), array('src' => 'messages.php', 'def_path' => TRUE), array('src' => 'geo_autocomplete.js', 'def_path' => TRUE), array('src' => 'utils.js', 'def_path' => TRUE), array('src' => 'token.js', 'def_path' => TRUE), array('src' => 'jquery.tipTip.js', 'def_path' => TRUE), array('src' => 'combos.js', 'def_path' => TRUE), array('src' => 'av_icon.js.php', 'def_path' => TRUE), array('src' => 'asset_context_tree.js.php', 'def_path' => TRUE), array('src' => 'asset_devices.js.php', 'def_path' => TRUE), array('src' => 'av_map.js.php', 'def_path' => TRUE), array('src' => 'av_tabs.js.php', 'def_path' => TRUE), array('src' => 'jquery.switch.js', 'def_path' => TRUE), array('src' => 'av_storage.js.php', 'def_path' => TRUE), array('src' => 'jquery.dropdown.js', 'def_path' => TRUE), array('src' => '/av_asset/asset/js/asset_common.js.php', 'def_path' => FALSE), array('src' => '/av_asset/asset/js/asset_form.js.php', 'def_path' => FALSE), array('src' => '/av_asset/asset/js/asset_property_list.js.php', 'def_path' => FALSE), array('src' => '/av_asset/asset/js/asset_software_list.js.php', 'def_path' => FALSE), array('src' => '/av_asset/asset/js/asset_service_list.js.php', 'def_path' => FALSE));
Util::print_include_files($_files, 'js');
?>

        <script type='text/javascript'>

            $(document).ready(function()
            {
                // Load tabs
                <?php 
if ($edition_type == 'bulk') {
    $js_tab_config = array('id' => 'av_tabs', 'hide' => $hide_tab_list, 'selected' => $tab_data['tab_index'], 'asset_options' => array("asset_type" => $asset_type));
    ?>
开发者ID:jackpf,项目名称:ossim-arc,代码行数:31,代码来源:asset_form.php


注:本文中的Util::get_css_id方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。