bnbweb/temp/compiled/admin/message.htm.php

77 lines
2.4 KiB
PHP
Raw Normal View History

2022-11-14 17:31:15 +00:00
<?php echo $this->fetch('pageheader.htm'); ?>
<div class="list-div message">
<div style="background:#FFF; padding: 20px 50px; margin: 2px;">
<table align="center" width="400" style="background:#fff;">
<tr>
<td width="50" valign="top">
<?php if ($this->_var['msg_type'] == 0): ?>
<img src="images/information.gif" width="32" height="32" border="0" alt="information" />
<?php elseif ($this->_var['msg_type'] == 1): ?>
<img src="images/warning.gif" width="32" height="32" border="0" alt="warning" />
<?php else: ?>
<img src="images/confirm.gif" width="32" height="32" border="0" alt="confirm" />
<?php endif; ?>
</td>
<td style="font-size: 14px; font-weight: bold"><?php echo $this->_var['msg_detail']; ?></td>
</tr>
<tr>
<td></td>
<td id="redirectionMsg">
<?php if ($this->_var['auto_redirect']): ?><?php echo $this->_var['lang']['auto_redirection']; ?><?php endif; ?>
</td>
</tr>
<tr>
<td></td>
<td>
<ul style="margin:0; padding:0 10px" class="msg-link">
<?php $_from = $this->_var['links']; if (!is_array($_from) && !is_object($_from)) { settype($_from, 'array'); }; $this->push_vars('', 'link');if (count($_from)):
foreach ($_from AS $this->_var['link']):
?>
<li><a href="<?php echo $this->_var['link']['href']; ?>" <?php if ($this->_var['link']['target']): ?>target="<?php echo $this->_var['link']['target']; ?>"<?php endif; ?>><?php echo $this->_var['link']['text']; ?></a></li>
<?php endforeach; endif; unset($_from); ?><?php $this->pop_vars();; ?>
</ul>
</td>
</tr>
</table>
</div>
</div>
<?php if ($this->_var['auto_redirect']): ?>
<script language="JavaScript">
<!--
var seconds = 3;
var defaultUrl = "<?php echo $this->_var['default_url']; ?>";
onload = function()
{
if (defaultUrl == 'javascript:history.go(-1)' && window.history.length == 0)
{
document.getElementById('redirectionMsg').innerHTML = '';
return;
}
window.setInterval(redirection, 1000);
}
function redirection()
{
if (seconds <= 0)
{
window.clearInterval();
return;
}
seconds --;
document.getElementById('spanSeconds').innerHTML = seconds;
if (seconds == 0)
{
window.clearInterval();
location.href = defaultUrl;
}
}
//-->
</script>
<?php endif; ?>
<?php echo $this->fetch('pagefooter.htm'); ?>