diff --git a/html/pages/device/overview.inc.php b/html/pages/device/overview.inc.php index f414dd4e5..1d7ee6867 100644 --- a/html/pages/device/overview.inc.php +++ b/html/pages/device/overview.inc.php @@ -26,6 +26,8 @@ echo('
'); include("includes/dev-overview-data.inc.php"); +Plugins::call('device_overview_container',array($device)); + include("overview/ports.inc.php"); echo('
diff --git a/html/plugins/Test/Test.php b/html/plugins/Test/Test.php index dd1134438..3447d4254 100644 --- a/html/plugins/Test/Test.php +++ b/html/plugins/Test/Test.php @@ -4,6 +4,14 @@ class Test { public function menu() { echo('
  • '.get_class().'
  • '); } + + /* + public function device_overview_container($device) { + echo('
    '.get_class().' Plugin
    '); + echo(' Example plugin in "Device - Overview" tab
    '); + echo('
    '); + } + */ } ?>