I am trying to do a search, using pagination for posts which have a specific tag or tags (for example, if a user was to select two tags, then posts containing either tag would be returned).
I have the relationship defined in my Posts table
public $hasAndBelongsToMany = array('Tags' => array(
'className' => 'Tags',
'joinTable' => 'posts_tags',
'foreignKey' => 'post_id',
'associationForeignKey' => 'tag_id',
'unique' => 'keepExisting'));
How do I use Find to retrieve rows with a given tag (name or ID would be fine)
Trying:
// other pagination settings goes here
$this->paginate['conditions']['Tags.id'] = 13;
gives me an error that the relationship does not exist.
Looking at the debug info it appears that the tables are not joining the Posts_Tags and Tags table, however, when I debug the data making it to the view, the Posts objects contain the tags data.
Most of the documentation I can find for this seems to revolve around earlier versions of CakePHP, any help would be appreciated.
posts_tags(idint(10) unsigned NOT NULL AUTO_INCREMENT,post_idint(10) unsigned NOT NULL,tag_idint(10) unsigned NOT NULL, PRIMARY KEY (id), KEYpost_tags_post_id_fk(post_id), KEYpost_tags_tag_id_fk(tag_id), CONSTRAINTpost_tags_post_id_fkFOREIGN KEY (post_id) REFERENCESposts(id) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINTpost_tags_tag_id_fkFOREIGN KEY (tag_id) REFERENCEStags(id) ON DELETE CASCADE ON UPDATE CASCADE ); – user1627061 Aug 28 '12 at 0:11