AlertSection.php 553 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace ModulesGarden\ProxmoxAddon\App\UI\Settings\Sections;
  3. use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\ProxmoxAddon\Core\UI\Traits\Alerts;
  5. use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Sections\BoxSection;
  6. class AlertSection extends BoxSection implements AdminArea
  7. {
  8. use Alerts;
  9. public function __construct($mesage , $type ='info')
  10. {
  11. $this->internalAlertMessage = $mesage;
  12. $this->internalAlertMessageType = $type;
  13. parent::__construct('alertSection');
  14. }
  15. }