Source: site.view [edit]
Function name: getVaultValue
Arguments: key
Description: Looks up in the vault the value for a key
Page type: webl
Render function:  
Module: siteutil

Page source:

try
   var v = Wub_GetVaultValue(key);
   v;
catch E
   on E.type == "InsufficientPermissions" do
      WubCall("sitemessageref", ["mustlogin", key])
   on E.type == "UnknownKey" do
      WubCall("sitemessageref", ["unknownkey", key])
end