17 lines
237 B
Python
17 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"
|
||
|
|
||
|
|