Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/libraries/quix/app/elements/alert/
Upload File :
Current File : /home/pteabiscqq/www/libraries/quix/app/elements/alert/view.php

<?php
  $classes = classNames( "qx-element qx-element-{$type} {$field['class']} alert alert-{$field['alert_style']}", $visibilityClasses, [
    "wow {$field['animation']}" => $field['animation'],
    "qx-hvr-{$field['hover_animation']}" => $field['hover_animation']
  ]);
// Animation delay
$animation_delay = '';
if( $field['animation'] AND array_key_exists('animation_delay', $field) ){
  $animation_delay = 'data-wow-delay="'. $field['animation_delay'] .'s"';
}
?>
<div id="<?php echo $id; ?>" class="<?php echo $classes; ?>" <?php echo $animation_delay; ?>>
    <?php if ($field['show_close']) : ?>
        <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
    <?php endif; ?>
  <?php echo $field['content']; ?>
</div>
<!-- qx-element-text -->