Miscellaneous
filterChain()
Signature
Section titled “Signature”filterChain() — returns any
Description
Section titled “Description”Returns an array of all the filters set on this controller in the order in which they will be executed.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
type | string | yes | all | Use this argument to return only before or after filters. |
Examples
Section titled “Examples”// Get filter chain myFilterChain = filterChain(); // Get filter chain for after filters only myFilterChain = filterChain(type="after");