2006-10-09 18:43:14 +02:00
|
|
|
import CryptoBoxPlugin
|
|
|
|
|
|
|
|
|
|
|
|
class volume_details(CryptoBoxPlugin.CryptoBoxPlugin):
|
|
|
|
|
|
|
|
pluginCapabilities = [ "volume" ]
|
|
|
|
requestAuth = False
|
2006-10-11 17:50:24 +02:00
|
|
|
rank = 100
|
2006-10-09 18:43:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
def doAction(self):
|
|
|
|
## all variables are already set somewhere else
|
|
|
|
return "volume_details"
|
|
|
|
|
|
|
|
|
|
|
|
def getStatus(self):
|
|
|
|
return "no status"
|
|
|
|
|