Back
afterNew()
Registers method(s) that should be called after a new object has been initialized (which is usually done with the new
method).
// Instruct CFWheels to call the `fixObj` method after a new object has been created.
afterNew("fixObj");
Copied!