ServiceGraphs.php 489 B

123456789101112131415161718
  1. <?php
  2. namespace ModulesGarden\Servers\ProxmoxCloudVps\App\UI\ServiceGraph\Pages;
  3. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Container;
  4. use ModulesGarden\Servers\ProxmoxCloudVps\Core\UI\Interfaces\ClientArea;
  5. class ServiceGraphs extends Container implements ClientArea
  6. {
  7. public function initContent()
  8. {
  9. $this->addElement(ServiceCpuGraph::class);
  10. $this->addElement(ServiceMemoryGraph::class);
  11. $this->addElement(ServiceNetworkGraph::class);
  12. }
  13. }