1234567891011121314151617181920212223242526 |
- <?php
- foreach (webApp::app()->getNotifications() as $n) { ?>
- <div class="alert alert-<?php echo notificacionTipoAlerta($n);?> alert-dismissible">
- <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button>
- <?php echo $n->text;?>
- </div>
- <?php }
- function notificacionTipoAlerta($n)
- {
- switch ($n->type) {
- case notificacion::SUCCESS:
- return 'success';
- case notificacion::ERROR:
- return 'danger';
- case notificacion::WARNING:
- return 'warning';
- case notificacion::INFO:
- return 'info';
- }
- return '';
- }
|