Return to v2.5.0 docs

beforeSave()


Model Configuration Callback Functions void model


Registers method(s) that should be called before an object is saved.

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).
// Instruct CFWheels to call the `fixObj` method
beforeSave("fixObj");

Related Functions

Callback Functions