mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-06-05 22:09:38 +02:00
Commit iniziale (r1662)
Migrazione da SourceForge, partendo dal commit 1662 della carrtella trunk/openstamanager.
This commit is contained in:
54
include/bottom.php
Normal file
54
include/bottom.php
Normal file
@@ -0,0 +1,54 @@
|
||||
<?php
|
||||
|
||||
include_once __DIR__.'/../core.php';
|
||||
|
||||
if (Auth::check()) {
|
||||
echo '
|
||||
</div><!-- /.row -->
|
||||
</section><!-- /.content -->
|
||||
</aside><!-- /.content-wrapper -->
|
||||
|
||||
<footer class="main-footer">
|
||||
<span class="pull-right hidden-xs">
|
||||
<strong>'._('Versione').' '.$version.'</strong>
|
||||
<small class="text-muted">('.(!empty($revision) ? 'R'.$revision : _('In sviluppo')).')</small>
|
||||
</span>
|
||||
'._('OpenSTAManager').'
|
||||
</footer>
|
||||
|
||||
<div class="modal fade" id="bs-popup" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"></div>
|
||||
<div class="modal fade" id="bs-popup2" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"></div>
|
||||
<a href="#" id="back-to-top">
|
||||
<span><i class="fa fa-2x fa-chevron-up"></i></span>
|
||||
</a>';
|
||||
}
|
||||
echo '
|
||||
</div><!-- ./wrapper -->';
|
||||
|
||||
if (Auth::check()) {
|
||||
if (!empty($_SESSION['keep_alive'])) {
|
||||
echo '
|
||||
<script> setInterval("session_keep_alive()", 5*60*1000); </script>';
|
||||
}
|
||||
|
||||
if (get_var('CSS Personalizzato') != '') {
|
||||
echo '
|
||||
<style>'.get_var('CSS Personalizzato').'</style>';
|
||||
}
|
||||
|
||||
if (!empty($debugbarRenderer)) {
|
||||
echo $debugbarRenderer->render();
|
||||
}
|
||||
}
|
||||
|
||||
echo '
|
||||
<script>
|
||||
// Rimozione del messaggio automatico riguardante la modifica di valori nella pagina
|
||||
window.onbeforeunload = null;
|
||||
</script>
|
||||
</body>
|
||||
</html>';
|
||||
|
||||
unset($_SESSION['infos']);
|
||||
unset($_SESSION['errors']);
|
||||
unset($_SESSION['warnings']);
|
||||
Reference in New Issue
Block a user