From 07e996094c805f87e04e88eb97d83663f645b192 Mon Sep 17 00:00:00 2001 From: Runar Borge Date: Mon, 22 Jun 2015 21:53:35 +0200 Subject: [PATCH] Removed var_dump and updated text in Example plugin --- html/plugins/Test/Test.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/html/plugins/Test/Test.php b/html/plugins/Test/Test.php index 06d20d28c..f6817bd31 100644 --- a/html/plugins/Test/Test.php +++ b/html/plugins/Test/Test.php @@ -6,10 +6,8 @@ class Test { } public function device_overview_container($device) { - echo('
Test Plugin
i"ve just added a plugin :)
'); - echo('
');
-    var_dump($device);
-    echo('
'); + echo('
'.get_class().' Plugin
'); + echo(' Example plugin i "Device - Overview" tab
'); echo('
'); } }