2011-06-16 21:26:45 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// TODO: Poner esto resizable y dragable: http://jqueryui.com/demos/dialog
|
2016-11-03 16:51:18 +01:00
|
|
|
if(check_login()){
|
2011-06-16 21:26:45 +02:00
|
|
|
|
2016-09-22 11:12:19 +02:00
|
|
|
echo "
|
|
|
|
<div class='modalheader'>
|
2016-10-03 15:49:34 +02:00
|
|
|
<span class='modalheadertext'>";
|
|
|
|
|
2017-03-09 15:40:59 +01:00
|
|
|
if (!enterprise_installed()) {
|
2016-10-03 15:49:34 +02:00
|
|
|
echo "Community version";
|
|
|
|
}
|
2017-03-09 15:40:59 +01:00
|
|
|
else {
|
2016-10-03 15:49:34 +02:00
|
|
|
echo "Enterprise version";
|
|
|
|
}
|
|
|
|
|
|
|
|
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>";
|
|
|
|
|
2017-11-21 19:28:44 +01:00
|
|
|
echo "<div style='overflow-y:auto;height:400px;min-height:400px;max-height:400px;padding:20px;'>";
|
2017-03-09 15:40:59 +01:00
|
|
|
echo get_pandora_error_for_header();
|
|
|
|
echo "</div>";
|
2016-11-03 16:51:18 +01:00
|
|
|
|
2018-01-05 11:32:16 +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>";
|
2011-06-16 21:26:45 +02:00
|
|
|
|
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(){
|
2017-03-13 13:25:16 +01:00
|
|
|
$("#alert_messages").hide();
|
|
|
|
$( "#opacidad" ).remove();
|
2016-09-22 11:12:19 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
</script>
|