Model Configuration
afterSave()
Signature
Section titled “Signature”afterSave() — returns void
Available in: model
Category: Callback Functions
Description
Section titled “Description”Registers method(s) that should be called after an object is saved.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
methods | string | no | — | 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 after an object has been saved.
afterSave("fixObj");