| 1234567891011121314151617181920212223242526 |
- <?php
- namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Vm\Pages;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea;
- use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\TabsWidget\TabsWidget;
- use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\SnapshotRawDataTable;
- use ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages\JobRawDataTable;
- class SnapshotTab extends TabsWidget implements ClientArea
- {
- use ProductService;
- protected $id = 'SnapshotTab';
- protected $name = 'SnapshotTabName';
- protected $title = 'SnapshotTabTitle';
- public function initContent()
- {
- $this->unsetShowTitle();
- $this->addElement(new SnapshotRawDataTable());
- $this->addElement(new JobRawDataTable());
- }
- }
|