forked from dubbelj/librenms-plugin-xDP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xDP.php
24 lines (19 loc) · 927 Bytes
/
xDP.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
namespace LibreNMS\Plugins;
class xDP
{
public static function menu()
{
echo '<li><a href="plugin/p=xDP">xDP</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>');
# }
# public function port_container($device, $port) {
# 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 in "Port" tab</strong> </div>');
# echo ('Example display in Port tab</br>');
# echo('</div></div></div></div>');
# }
}