Miscellaneous
afterNew()
Signature
Section titled “Signature”afterNew() — returns any
Description
Section titled “Description”Registers method(s) that should be called after a new object has been initialized (which is usually done with the new method).
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
methods | string | yes | — | Method name or list of method names that should be called when this callback event occurs in an object’s life cycle (can also be called with the method argument). |
Examples
Section titled “Examples”<!--- Instruct CFWheels to call the `fixObj` method --->
<cfset afterNew("fixObj")>