Files
globelus.pl/templates_user/site/alert-prompt.php
2024-11-11 15:28:20 +01:00

27 lines
660 B
PHP

<script type="text/javascript">
$.alert(
{
title: '<?= $this -> alert['title'];?>',
icon: 'fa fa-exclamation',
content: '<?= $this -> alert['message'];?>',
closeIcon: true,
closeIconClass: 'fa fa-close',
typeAnimated: true,
animation: 'opacity',
<? if ( $this -> alert['autoclose'] ):?>
autoClose: 'confirm|<?= $this -> alert['autoclose'] * 1000;?>',
<? endif;?>
columnClass: 'large',
theme: 'modern',
buttons:
{
confirm:
{
text: '<?= \S::lang( 'zamknij' );?>',
btnClass: 'btn-blue',
keys: ['enter'],
action: function() {}
}
}
});
</script>