CakePHP: Trackable Behavior with associated models
I'm trying to use trackable behavior in CakePHP but with associated models.
I've taken TrackableBehavior as a Model Behavior from Croogo which is
based upon a plugin from Jose Gonzalez.
It works like a charm, but I'm trying to find a way to make it work
properly when the data of the child/associated model are returned in a
view of the "parent" model.
The associations are:
Clients hasMany Notes
Notes belongTo Clients
To be more clear: Both Models use Trackable Behavior. In the Clients
"view" view ( ugh ) I list all the notes that are owned by the Client. I'd
like Trackable Behavior to return the trackable records ( created_by /
modified_by ) for each note that is listed, yet it only returns the
Trackable Array for the parent model ( Clients ).
Any ideas?
No comments:
Post a Comment