DIR : /home/kozerus/public_html/zc/adam/includes/modules/notificationsDisplay.php
/home/kozerus/public_html/zc/adam/includes/modules
<?php
/**
* @package admin
* @copyright Copyright 2003-2018 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: Drbyte Thu Dec 6 14:42:02 2018 -0500 New in v1.5.6 $
*/
if (! count($availableNotifications)) {
return;
}
foreach ($availableNotifications as $nKey => $aNotification) {
if (isset($aNotification['banner-group'])) {
?>
<div class="row alert alert-dismissible notification-alert" role="alert" data-notification="<?php echo $nKey; ?>">
<?php if ($aNotification['can-forget']) { ?>
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<?php } ?>
<script><!--//<![CDATA[
var loc = 'https://pan.zen-cart.com/display/group/' + '<?php echo $aNotification['banner-group']; ?>'
var rd = Math.floor(Math.random() * 99999999999);
document.write("<scr" + "ipt src='" + loc);
document.write('?rd=' + rd);
document.write("'></scr" + "ipt>");
//]]>--></script>
</div>
<?php
}
if (isset($aNotification['banner-html'])) {
?>
<div class="row alert alert-dismissible notification-alert" role="alert" data-notification="<?php echo $nKey; ?>">
<?php if ($aNotification['can-forget']) { ?>
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>
<?php } ?>
<?php echo $aNotification['banner-html']; ?>
</div>
<?php
}
}
?>
<script>
$('.notification-alert').on('close.bs.alert', function () {
zcJS.ajax({
url: "ajax.php?act=ajaxAdminNotifications&method=forget",
data: {'key': $(this).data('notification'), 'admin_id': <?php echo $_SESSION['admin_id']; ?>}
}).done(function( response ) {
});
})
</script>
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer