cryptonas/plugins/volume_details/volume_details.py

20 lines
342 B
Python
Raw Normal View History

import cryptobox.plugins.base
2006-11-06 17:05:00 +01:00
class volume_details(cryptobox.plugins.base.CryptoBoxPlugin):
2006-11-06 17:05:00 +01:00
pluginCapabilities = [ "volume" ]
pluginVisibility = [ "volume" ]
2006-11-06 17:05:00 +01:00
requestAuth = False
rank = 100
def doAction(self):
## all variables are already set somewhere else
return "volume_details"
def getStatus(self):
return "no status"