diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-12-19 01:57:57 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-12-19 01:57:57 +0000 |
| commit | b3658b04216ed3974047b4c4ec885ee0161d9267 (patch) | |
| tree | bb41c00ecba9547dc7dd1b5c68bcb95ee8cf4583 | |
| parent | 46b35be7bd902e752ecf89c2b97f8eec8c46a5d7 (diff) | |
| download | enigma2-b3658b04216ed3974047b4c4ec885ee0161d9267.tar.gz enigma2-b3658b04216ed3974047b4c4ec885ee0161d9267.zip | |
add WHERE_FILESCAN
| -rw-r--r-- | lib/python/Plugins/Plugin.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/python/Plugins/Plugin.py b/lib/python/Plugins/Plugin.py index de3ec4f0..c792446a 100644 --- a/lib/python/Plugins/Plugin.py +++ b/lib/python/Plugins/Plugin.py @@ -38,6 +38,9 @@ class PluginDescriptor: # start as teletext plugin. arguments: session, serviceref WHERE_TELETEXT = 8 + # file-scanner, fnc must return a list of Scanners + WHERE_FILESCAN = 9 + def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None): self.name = name if type(where) is list: |
