diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-11 00:59:28 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-11 00:59:28 +0000 |
| commit | cac26b7fed73c832e8af35cc44830ef4a8f34d5a (patch) | |
| tree | 3ba0c49749918f9f84f3fe88057ffae503afc88f /lib/python/Plugins | |
| parent | c6da3982398188f98684f398291b30b4aecba49e (diff) | |
| download | enigma2-cac26b7fed73c832e8af35cc44830ef4a8f34d5a.tar.gz enigma2-cac26b7fed73c832e8af35cc44830ef4a8f34d5a.zip | |
Plugin: add WHERE_TELETEXT
Diffstat (limited to 'lib/python/Plugins')
| -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 71b665b1..b2808c8e 100644 --- a/lib/python/Plugins/Plugin.py +++ b/lib/python/Plugins/Plugin.py @@ -32,6 +32,9 @@ class PluginDescriptor: # delivered, and only on pre-loaded plugins WHERE_SESSIONSTART = 7 + # start as teletext plugin. arguments: session, serviceref + WHERE_TELETEXT = 8 + def __init__(self, name = "Plugin", where = [ ], description = "", icon = None, fnc = None): self.name = name if type(where) is list: |
