Update the enhanced theme add the message.

This commit is contained in:
Mark Crane 2013-09-12 17:19:11 +00:00
parent f609811069
commit f92eb8e28e
1 changed files with 53 additions and 34 deletions

View File

@ -580,32 +580,47 @@ table tr:nth-last-child(-5) td:first-of-type {
-khtml-opacity: 0.9; -khtml-opacity: 0.9;
opacity: 0.9; opacity: 0.9;
} }
.message {
background-repeat: repeat-x;
background-attachment: fixed;
padding: 20px;
opacity: 0.9;
filter:alpha(opacity=90);
-moz-opacity:0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
-webkit-border-radius: 7px 7px 7px 7px;
-moz-border-radius: 7px 7px 7px 7px;
border-radius: 7px 7px 7px 7px;
text-align: left;
}
</style> </style>
<script type="text/javascript"> <script type="text/javascript">
<!-- <!--
function jsconfirm(title,msg,url) { function jsconfirm(title,msg,url) {
if (confirm(msg)){ if (confirm(msg)){
window.location = url; window.location = url;
} }
else{ else{
} }
} }
//--> //-->
</script> </script>
<SCRIPT language="JavaScript"> <SCRIPT language="JavaScript">
<!-- <!--
function confirmdelete(url) { function confirmdelete(url) {
var confirmed = confirm("Are you sure want to delete this."); var confirmed = confirm("Are you sure want to delete this.");
if (confirmed == true) { if (confirmed == true) {
window.location=url; window.location=url;
} }
} }
//--> //-->
</SCRIPT> </SCRIPT>
</head> </head>
<body> <body onload="message_timeout();">
<?php <?php
//get a random background image //get a random background image
$dir = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/themes/enhanced/images/backgrounds'; $dir = $_SERVER["DOCUMENT_ROOT"].PROJECT_PATH.'/themes/enhanced/images/backgrounds';
@ -694,11 +709,27 @@ function confirmdelete(url) {
</tr> </tr>
<tr> <tr>
<td valign='top' align='center' width='100%'> <td valign='top' align='center' width='100%'>
<table width='100%' cellpadding='0' cellspacing='0' border='0'> <table width='100%' cellpadding='0' cellspacing='0' border='0'>
<tr> <tr>
<td class='main_content' align='left' valign='top' width='85%'> <td class='main_content' align='left' valign='top' width='85%'>
<script type = "text/javascript">
<!--
function message_hide() {
document.getElementById("message").style.display="none";
}
function message_timeout() {
var tim = window.setTimeout("message_hide()", 1000);
}
-->
</script>
<?php
if (strlen($_SESSION['message']) > 0) {
echo "<div id='message' style='position:absolute; left:50%;'>";
echo " <table><tr><td class='vncellreq'>".$_SESSION['message']."</td></tr></table>";
echo "</div>";
unset($_SESSION['message']);
}
?>
<!--{body}--> <!--{body}-->
<br /><br /> <br /><br />
@ -706,18 +737,6 @@ function confirmdelete(url) {
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<br /><br /> <br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
<br /><br />
</td> </td>
</tr> </tr>
@ -728,13 +747,13 @@ function confirmdelete(url) {
<?php <?php
if (substr($_SERVER['PHP_SELF'], -9) != "login.php") { if (substr($_SERVER['PHP_SELF'], -9) != "login.php") {
echo "<span class='smalltext'>\n"; echo "<span class='smalltext'>\n";
echo " <a class='smalltext' target='_blank' href='http://www.fusionpbx.com'>fusionpbx.com</a>. Copyright 2008 - 2012. All Rights Reserved\n"; echo " <a class='smalltext' target='_blank' href='http://www.fusionpbx.com'>fusionpbx.com</a>. Copyright 2008 - 2013. All Rights Reserved\n";
echo "</span>\n"; echo "</span>\n";
} }
else { else {
echo "<!--\n"; echo "<!--\n";
echo " http://www.fusionpbx.com \n"; echo " http://www.fusionpbx.com \n";
echo " Copyright 2008 - 2011 \n"; echo " Copyright 2008 - 2013 \n";
echo " All Rights Reserved\n"; echo " All Rights Reserved\n";
echo "-->\n"; echo "-->\n";
} }