2011-06-16 21:26:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// TODO: Poner esto resizable y dragable: http://jqueryui.com/demos/dialog
|
2019-01-30 16:18:44 +01:00
|
|
|
if (check_login()) {
|
|
|
|
echo "
|
2016-09-22 11:12:19 +02:00
|
|
|
<div class='modalheader'>
|
2016-10-03 15:49:34 +02:00
|
|
|
<span class='modalheadertext'>";
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
if (!enterprise_installed()) {
|
|
|
|
echo 'Community version';
|
|
|
|
} else {
|
|
|
|
echo 'Enterprise version';
|
|
|
|
}
|
2016-10-03 15:49:34 +02:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
echo "</span>
|
2016-09-22 11:12:19 +02:00
|
|
|
<img class='modalclosex cerrar' src='".$config['homeurl']."/images/icono_cerrar.png'>
|
2016-11-03 16:51:18 +01:00
|
|
|
</div>";
|
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
echo "<div style='overflow-y:auto;height:400px;min-height:400px;max-height:400px;padding:20px;'>";
|
|
|
|
echo get_pandora_error_for_header();
|
|
|
|
echo '</div>';
|
2016-11-03 16:51:18 +01:00
|
|
|
|
2019-01-30 16:18:44 +01:00
|
|
|
echo "<div class='modalokbutton cerrar' style='margin-top: 10px'>
|
2016-09-22 11:12:19 +02:00
|
|
|
<span class='modalokbuttontext close'>OK</span>
|
|
|
|
</div>";
|
2016-11-03 16:51:18 +01:00
|
|
|
}
|
2011-06-16 21:26:45 +02:00
|
|
|
?>
|
2016-09-22 11:12:19 +02:00
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
$(".cerrar").click(function(){
|
2018-10-25 14:01:12 +02:00
|
|
|
$("#alert_messages")
|
2019-01-30 16:18:44 +01:00
|
|
|
.css('opacity', 0)
|
|
|
|
.hide();
|
2018-10-25 14:01:12 +02:00
|
|
|
$( "#opacidad" )
|
2019-01-30 16:18:44 +01:00
|
|
|
.css('opacity', 0)
|
|
|
|
.remove();
|
2016-09-22 11:12:19 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|