notifications.php 646 B

1234567891011121314151617181920212223242526
  1. <?php
  2. foreach (webApp::app()->getNotifications() as $n) { ?>
  3. <div class="alert alert-<?php echo notificacionTipoAlerta($n);?> alert-dismissible">
  4. <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
  5. <?php echo $n->text;?>
  6. </div>
  7. <?php }
  8. function notificacionTipoAlerta($n)
  9. {
  10. switch ($n->type) {
  11. case notificacion::SUCCESS:
  12. return 'success';
  13. case notificacion::ERROR:
  14. return 'danger';
  15. case notificacion::WARNING:
  16. return 'warning';
  17. case notificacion::INFO:
  18. return 'info';
  19. }
  20. return '';
  21. }