lars
87d99e8173
description of plugin interface extended with possible redirection to another plugin
17 lines
251 B
Python
17 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"
|
|
|
|
|