2019-02-28 17:40:11 +01:00
< html >
< head >
< style >
#alert_messages_na{
- moz - border - bottom - right - radius : 5 px ;
- webkit - border - bottom - left - radius : 5 px ;
border - bottom - right - radius : 5 px ;
border - bottom - left - radius : 5 px ;
z - index : 2 ;
position : fixed ;
width : 700 px ;
background : white ;
left : 50 % ;
top : 20 % ;
margin - left :- 350 px ;
}
. modalheade {
text - align : center ;
width : 100 % ;
height : 37 px ;
left : 0 px ;
background - color : #82b92e;
}
. modalheadertex {
color : white ;
position : relative ;
font - family : Nunito ;
font - size : 13 pt ;
top : 8 px ;
}
. modalconten {
color : black ;
background : white ;
}
. modalcontentim {
float : left ;
margin - left : 30 px ;
margin - top : 30 px ;
margin - bottom : 30 px ;
}
. modalcontenttex {
float : left ;
text - align : justify ;
color : black ;
font - size : 9.5 pt ;
line - height : 13 pt ;
margin - top : 40 px ;
width : 430 px ;
margin - left : 30 px ;
}
. modalwikibutto {
cursor : pointer ;
text - align : center ;
margin - right : 45 px ;
float : right ;
- moz - border - radius : 3 px ;
- webkit - border - radius : 3 px ;
margin - bottom : 30 px ;
border - radius : 3 px ;
width : 170 px ;
height : 30 px ;
border : 1 px solid #82b92e;
margin - top : 8 % ;
background - color : #82b92e;
}
. modalwikibuttontex {
color : #ffffff;
font - family : Nunito ;
font - size : 10 pt ;
position : relative ;
top : 6 px ;
}
#opacity{
background : black ; opacity : 0.1 ; left : 0 px ; top : 0 px ; width : 100 % ; height : 100 % ;
}
</ style >
</ head >
< body >
< div id = " alert_messages_na " >
< div class = 'modalheade' >
< span class = 'modalheadertex' >
< ? php echo __ ( 'Database error' ); ?>
</ span >
</ div >
< div class = 'modalconten' >
< img class = 'modalcontentim' src = '<?php echo $config[' homeurl ']; ?>/images/mysqlerr.png' >
< div class = 'modalcontenttex' >
< ? php
echo __ ( 'Failure to connect to Database server, please check the configuration file config.php or contact system administrator if you need assistance.' );
?>
</ div >
</ div >
2019-11-11 13:33:37 +01:00
< ? php
$custom_conf_enabled = false ;
foreach ( $config as $key => $value ) {
if ( preg_match ( '/._alt/i' , $key )) {
$custom_conf_enabled = true ;
break ;
}
}
if ( ! $custom_conf_enabled ) {
echo '
< a href = " https://wiki.pandorafms.com/index.php?title=Pandora:Documentation_en:Configuration " target = " _blank " >
< div class = " modalwikibutto cerrar " >
< span class = " modalwikibuttontex " > '.__(' Documentation ').'
</ span >
</ div >
</ a >
' ;
}
?>
2019-02-28 17:40:11 +01:00
</ a >
</ div >
< div id = " opacity " ></ div >
</ body >
</ html >