lars
87d99e8173
description of plugin interface extended with possible redirection to another plugin
16 lines
237 B
Python
16 lines
237 B
Python
import CryptoBoxPlugin
|
|
|
|
class system_preferences(CryptoBoxPlugin.CryptoBoxPlugin):
|
|
|
|
pluginCapabilities = [ "menu" ]
|
|
requestAuth = False
|
|
rank = 20
|
|
|
|
def doAction(self):
|
|
return "show_plugins"
|
|
|
|
|
|
def getStatus(self):
|
|
return "TODO"
|
|
|
|
|