| 1234567891011121314151617181920212223 |
- <?php
- namespace ModulesGarden\ProxmoxAddon\App\UI\Settings\Sections;
- use ModulesGarden\ProxmoxAddon\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\ProxmoxAddon\Core\UI\Traits\Alerts;
- use ModulesGarden\ProxmoxAddon\Core\UI\Widget\Forms\Sections\BoxSection;
- class AlertSection extends BoxSection implements AdminArea
- {
- use Alerts;
- public function __construct($mesage , $type ='info')
- {
- $this->internalAlertMessage = $mesage;
- $this->internalAlertMessageType = $type;
- parent::__construct('alertSection');
- }
- }
|