18 lines
251 B
Python
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"
|
||
|
|
||
|
|