FOFTable::onBeforeBind

The event which runs before binding data to the table

NOTE TO 3RD PARTY DEVELOPERS: When you override the following methods in your child classes, be sure to call parent::method *AFTER* your code, otherwise the plugin events do NOT get triggered Example: protected function onAfterStore(){ // Your code here return parent::onAfterStore() && $your_result; } Do not do it the other way around, e.g. return $your_result && parent::onAfterStore() Due to PHP short-circuit boolean evaluation the parent::onAfterStore() will not be called if $your_result is false.