network setup rewrite... adds support for multiple devices and an extended setup...
[enigma2.git] / lib / python / Plugins / Plugin.py
index c792446a032606aad038c7c287b71ca0a9dc94d9..b80dcadcf12189cd655aa12dac78191bd283e5ba 100644 (file)
@@ -41,6 +41,10 @@ class PluginDescriptor:
        # file-scanner, fnc must return a list of Scanners
        WHERE_FILESCAN = 9
        
+       # fnc must take an interface name as parameter and return None if the plugin supports an extended setup
+       # or return a function which is called with session and the interface name for extended setup of this interface
+       WHERE_NETWORKSETUP = 10
+       
        def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None):
                self.name = name
                if type(where) is list: