2017-08-04 16:28:16 +02:00
|
|
|
<?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">
|
2017-09-04 12:02:29 +02:00
|
|
|
<strong>'.tr('Versione').' '.$version.'</strong>
|
|
|
|
<small class="text-muted">('.(!empty($revision) ? 'R'.$revision : tr('In sviluppo')).')</small>
|
2017-08-04 16:28:16 +02:00
|
|
|
</span>
|
2017-09-04 12:02:29 +02:00
|
|
|
'.tr('OpenSTAManager').'
|
2017-08-04 16:28:16 +02:00
|
|
|
</footer>
|
|
|
|
|
|
|
|
<div class="modal fade" id="bs-popup" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"></div>
|
2017-08-30 11:50:46 +02:00
|
|
|
<div class="modal fade" id="bs-popup2" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" data-backdrop="static" data-keyboard="false"></div>';
|
2017-08-04 16:28:16 +02:00
|
|
|
}
|
|
|
|
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']);
|