cryptonas-branches/pythonrewrite/plugins/system_preferences/system_preferences.py
lars 87d99e8173 new menu plugins: "help", "system_preferences" and "disks"
description of plugin interface extended with possible redirection to another plugin
2006-11-01 09:22:58 +00:00

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"