Tony Murray 122aae85bf webui: Relocate Alerts menu
Plugins menu is moved to the Overview menu (this is basically just weathermap anyway)
2016-09-11 23:41:41 -05:00

22 lines
570 B
PHP

<?php
namespace LibreNMS\Plugins;
class Test
{
public function menu()
{
echo '<li><a href="plugin/p=Test">Test</a></li>';
}//end menu()
/*
public function device_overview_container($device) {
echo('<div class="container-fluid"><div class="row"> <div class="col-md-12"> <div class="panel panel-default panel-condensed"> <div class="panel-heading"><strong>'.get_class().' Plugin </strong> </div>');
echo(' Example plugin in "Device - Overview" tab <br>');
echo('</div></div></div></div>');
}
*/
}