aboutsummaryrefslogtreecommitdiff
path: root/doc/PLUGINS
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-19 20:47:23 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-19 20:47:23 +0000
commit57534d26a3ec9cc77ab3eedc5ad393897e4dee95 (patch)
tree42b9c2fd59234c4fb6830728c9824bce1625d01c /doc/PLUGINS
parentdaaf4b6ba8fbddd81553e0076385220ef1a7f327 (diff)
downloadenigma2-57534d26a3ec9cc77ab3eedc5ad393897e4dee95.tar.gz
enigma2-57534d26a3ec9cc77ab3eedc5ad393897e4dee95.zip
re-add autostart plugins
Diffstat (limited to 'doc/PLUGINS')
-rw-r--r--doc/PLUGINS15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/PLUGINS b/doc/PLUGINS
index fab701cb..96558775 100644
--- a/doc/PLUGINS
+++ b/doc/PLUGINS
@@ -68,3 +68,18 @@ def main(session):
with MyScreen being a GUI screen.
+
+autostarting plugins
+====================
+
+you can configure your plugin to automatically start on enigma startup, and
+end on shutdown.
+
+you just have to use "WHERE_AUTOSTART". your entry point must (fnc) look
+like:
+
+def autostartEntry(raeson):
+ if reason == 0: # startup
+ print "startup"
+ elif reason == 1:
+ print "shutdown"