cryptonas-branches/pythonrewrite/plugins/disks/disks.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

18 lines
251 B
Python

import CryptoBoxPlugin
class disks(CryptoBoxPlugin.CryptoBoxPlugin):
pluginCapabilities = [ "menu" ]
requestAuth = False
rank = 10
def doAction(self):
self.cbox.reReadContainerList()
return "disks"
def getStatus(self):
return "TODO"