2006-11-23 19:13:08 +00:00
|
|
|
import cryptobox.plugins.base
|
2006-11-06 16:05:00 +00:00
|
|
|
|
2006-11-23 19:13:08 +00:00
|
|
|
class system_preferences(cryptobox.plugins.base.CryptoBoxPlugin):
|
2006-11-06 16:05:00 +00:00
|
|
|
|
2006-11-08 12:19:30 +00:00
|
|
|
pluginCapabilities = [ "system" ]
|
|
|
|
pluginVisibility = [ "menu" ]
|
2006-11-06 16:05:00 +00:00
|
|
|
requestAuth = False
|
|
|
|
rank = 20
|
|
|
|
|
|
|
|
def doAction(self):
|
|
|
|
return "show_plugins"
|
|
|
|
|
|
|
|
|
|
|
|
def getStatus(self):
|
|
|
|
return "TODO"
|
|
|
|
|
|
|
|
|