I have the following function inside a cakephp model:
/**
*
* saveMany without MeioUpload validations
*
*/
public function saveManyDataOnly($data) {
// since creating records without files,
// we need to detach the behavior
$this->Behaviors->unload('MeioUpload.MeioUpload');
$result = $this->saveMany($data);
$this->Behaviors->load('MeioUpload.MeioUpload');
return $result;
}
I also need the same thing for save, and saveAssociated.
By same thing, I mean I need to unload and then reload the Behavior after calling save and saveAssociated respectively.
I do not wish to use the callback beforeSave and afterSave.
ADDED:
I do not wish to override the save and saveAssociated methods as well.
The reason is sometimes I want to use save, saveAssociated, saveMany with the behavior loaded.
the main reason why i want to unload the behavior sometimes is because the validations and the callbacks triggered by the behavior are NOT desirable for certain situations when i do a save, saveAssociated or saveMany
I could of course just simply write 2 more functions but I believe there should be a way to use call_user_func to accomplish the same aim without writing more code.
Help me understand how to write such code and how to call the new functions.
call_user_funcor any other php function from any method in your model. – bancer Oct 10 '12 at 7:35