AlertMessageCell.php 558 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Cells;
  3. use CodeIgniter\View\Cells\Cell;
  4. // Renderiza un mensaje de alerta.
  5. class AlertMessageCell extends Cell
  6. {
  7. public $message = '';
  8. public $type = 'default';
  9. private $class = [
  10. 'default' => 'alert',
  11. 'info' => 'alert alert-info',
  12. 'success' => 'alert alert-success',
  13. 'warning' => 'alert alert-warning',
  14. 'error' => 'alert alert-error',
  15. ];
  16. public function getClassProperty(): string
  17. {
  18. return $this->class[$this->type] ?? $this->class['default'];
  19. }
  20. }