add a tuxbox plugins plugin to prepare loading of tuxbox plugins when the c++ part...
[enigma2.git] / lib / python / Plugins / tuxboxplugins / plugin.py
diff --git a/lib/python/Plugins/tuxboxplugins/plugin.py b/lib/python/Plugins/tuxboxplugins/plugin.py
new file mode 100644 (file)
index 0000000..1e8d52e
--- /dev/null
@@ -0,0 +1,14 @@
+from enigma import *
+from Screens.Screen import Screen
+from Screens.MessageBox import MessageBox
+from Components.ActionMap import ActionMap
+from Components.Label import Label
+
+import os
+
+def getPlugins():
+       return [("Tuxbox-Plugin1", "function", "main", 0),
+                       ("Tuxbox-Plugin2", "function", "main", 1)]
+
+def main(session, args):
+       print "Running plugin with number", args
\ No newline at end of file