Skip to content

Controller

verificationChain()

verificationChain() — returns array

Available in: controller Category: Configuration Functions

Returns an array of all the verifications set on this controller in the order in which they will be executed.

// Get verification chain, remove the first item, and set it back.
myVerificationChain = verificationChain();
ArrayDeleteAt(myVerificationChain, 1);
setVerificationChain(myVerificationChain);