SnapshotRawDataTable.php 555 B

1234567891011121314151617181920
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\Snapshot\Pages;
  3. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\AdminArea;
  4. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea;
  5. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Widget\RawDataTable\RawDataTable;
  6. class SnapshotRawDataTable extends RawDataTable implements ClientArea, AdminArea
  7. {
  8. use SnapshotTrait;
  9. protected $id = 'snapshotDataTable';
  10. protected $title = 'snapshotDataTableTitle';
  11. protected $name = 'snapshotDataTable';
  12. }