moved python modules to separate packages below src/ renamed "hook" to "event" to avoid confusion
17 lines
284 B
Python
17 lines
284 B
Python
import cryptobox.plugins.base
|
|
|
|
class system_preferences(cryptobox.plugins.base.CryptoBoxPlugin):
|
|
|
|
pluginCapabilities = [ "system" ]
|
|
pluginVisibility = [ "menu" ]
|
|
requestAuth = False
|
|
rank = 20
|
|
|
|
def doAction(self):
|
|
return "show_plugins"
|
|
|
|
|
|
def getStatus(self):
|
|
return "TODO"
|
|
|
|
|