unsetShowTitle(); //Public Ips /** * @deprecated * $this->addElement(new IpAddressDataTable()); */ //Virtual Network if($this->configuration()->isPermissionVirtualNetwork()) { $this->addElement(VirtualInterfaceDataTable::class); } //Interfaces if ($this->configuration()->isQemu() && $this->configuration()->isPermissionNetwork()) { $this->addElement(new NetworkQemuDataTable()); } if ($this->configuration()->isLxc() && $this->configuration()->isPermissionNetwork()) { $this->addElement(new NetworkLxcDataTable()); } } }