summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 4fce968)
raw | patch | inline | side by side (parent: 4fce968)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 15 Sep 2010 13:13:16 +0000 (13:13 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 15 Sep 2010 13:13:16 +0000 (13:13 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19686 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/goto/admin/systems/goto/devices/class_registeredDevice.inc | [new file with mode: 0644] | patch | blob |
gosa-plugins/goto/admin/systems/goto/devices/registeredDeviceTab.inc | [new file with mode: 0644] | patch | blob |
diff --git a/gosa-plugins/goto/admin/systems/goto/devices/class_registeredDevice.inc b/gosa-plugins/goto/admin/systems/goto/devices/class_registeredDevice.inc
--- /dev/null
@@ -0,0 +1,26 @@
+<?php
+
+
+class registeredDevice extends plugin
+{
+
+
+
+
+ static function plInfo()
+ {
+ return (array(
+ "plShortName" => _("Device"),
+ "plDescription" => _("Registered device"),
+ "plSelfModify" => FALSE,
+ "plDepends" => array(),
+ "plPriority" => 1,
+ "plSection" => array("administration"),
+ "plCategory" => array(
+ "registeredDevice" => array( "description" => _("Registered device"),
+ "objectClass" => "registeredDevice")),
+ ));
+ }
+}
+
+?>
diff --git a/gosa-plugins/goto/admin/systems/goto/devices/registeredDeviceTab.inc b/gosa-plugins/goto/admin/systems/goto/devices/registeredDeviceTab.inc
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+class registeredDeviceTab extends tabs
+{
+}
+
+
+?>