| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Admin\Product\Sections;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\AdminArea;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Traits\Alerts;
- use ModulesGarden\Servers\ProxmoxCloudVps\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');
- }
- public function initContent()
- {
- // dump($this->getTemplateDir());
- // $this->getHtml();
- // die();
- }
- }
|