mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-12-15 01:24:07 +01:00
* general/login_page.php, general/logoff.php, general/header.php, general/login_help_dialog.php, godmode/reporting/reporting_builder.item_editor.php, godmode/reporting/visual_console_builder.elements.php, godmode/agentes/planned_downtime.editor.php, godmode/alerts/alert_list.list.php, godmode/alerts/configure_alert_compound.php, godmode/alerts/alert_list.php, godmode/alerts/configure_alert_template.php, include/styles/jquery-ui-1.8.23.custom.css, include/javascript/jquery.jquery-ui-1.8.17.custom.min.js, include/javascript/jquery.timeentry.js, include/javascript/jquery.ui.droppable.js, include/javascript/jquery.ui.draggable.js, include/javascript/jquery.ui-timepicker-addon.js, include/javascript/jquery.ui.resizable.js, include/javascript/jquery.autocomplete.js, include/javascript/jquery.ui.core.js, include/javascript/jquery-1.8.2.js, include/javascript/jquery.ui.dialog.js, include/javascript/jquery.jquery-ui-1.8.23.custom.min.js, include/functions_ui.php, index.php, extensions/update_manager/update_pandora.php, extensions/insert_data.php, operation/agentes/datos_agente.php, operation/reporting/graph_viewer.php, operation/reporting/reporting_viewer.php: updated the jquery and jquery.ui, and removed old useless files. And added the jquery library to timepicker and implemented the calls into the code. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6999 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
50 lines
1.8 KiB
PHP
50 lines
1.8 KiB
PHP
<?php
|
|
|
|
// Pandora FMS - http://pandorafms.com
|
|
// ==================================================
|
|
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
|
|
// Please see http://pandorafms.org for full contribution list
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU General Public License
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
ui_require_css_file ('jquery-ui-1.8.23.custom');
|
|
ui_require_jquery_file('jquery-ui-1.8.23.custom.min');
|
|
|
|
?>
|
|
<img src="images/login_background.png" id="login_body">
|
|
<div class="databox_logout" id="login">
|
|
<br>
|
|
<h1 id="log"><?php echo __('Logged out'); ?></h1>
|
|
<br>
|
|
<div style="width: 400px; margin: 0 auto auto;">
|
|
<table cellpadding="4" cellspacing="1" width="400">
|
|
<tr><td align="left">
|
|
<?php
|
|
echo '<a href="index.php">';
|
|
if (defined ('PANDORA_ENTERPRISE')){
|
|
html_print_image ("images/pandora_login_enterprise.png", false, array ("alt" => "logo", "border" => 0));
|
|
}
|
|
else {
|
|
html_print_image ("images/pandora_login.png", false, array ("alt" => "logo", "border" => 0));
|
|
}
|
|
|
|
//html_print_image ("images/pandora_login.png", false, array ("alt" => "logo", "border" => 0));
|
|
//echo '</a> '.$pandora_version;
|
|
?>
|
|
</td><td valign="bottom">
|
|
<?php echo __('Your session is over. Please close your browser window to close this Pandora session.').'<br /><br />'; ?>
|
|
</td></tr>
|
|
</table>
|
|
</div>
|
|
<br>
|
|
|
|
</div>
|
|
<div id="ver_num"><?php echo $pandora_version.(($develop_bypass == 1) ? ' '.__('Build').' '.$build_version : '') ?></div>
|