X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FPlugins%2Fexample.py;h=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hp=5b96ee3783000183b9baf3e86c22255ab60d01f9;hb=d10f7fd19c29bb8a3f4aa32679317e00ac4a3cbb;hpb=549ed3c87c4d3fe093472aa199ca6742c1f3654f diff --git a/lib/python/Plugins/example.py b/lib/python/Plugins/example.py index 5b96ee3..e69de29 100644 --- a/lib/python/Plugins/example.py +++ b/lib/python/Plugins/example.py @@ -1,34 +0,0 @@ -from enigma import * -from Screens.Screen import Screen -from Components.ActionMap import ActionMap -from Components.Label import Label - -class Example(Screen): - skin = """ - - - """ - - def __init__(self, session): - self.skin = Example.skin - Screen.__init__(self, session) - - self["text"] = Label("Small test") - - self["actions"] = ActionMap(["WizardActions"], - { - "ok": self.ok - }, -1) - - def ok(self): - self.close() - -def main(session): - session.open(Example) - - -def getPicturePath(): - return "/usr/share/enigma2/record.png" - -def getPluginName(): - return "Fancy example-plugin" \ No newline at end of file