Files
librenms-librenms/includes/html/pages/device/overview/maps.inc.php
Tony Murray 1dc62454fc Show custom maps in device overview (#15985)
* Show custom maps in device overview

* remove extra line return

* Sort by name
2024-04-26 15:10:24 -05:00

8 lines
152 B
PHP

<?php
$maps = DeviceCache::getPrimary()->maps;
if ($maps->isNotEmpty()) {
echo view('device.overview.maps', ['maps' => $maps->sortBy('name')]);
}