Cakephp Tagging - Auto Save new Tags and Tag Relations - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T08:01:29Z http://stackoverflow.com/feeds/question/755380 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/755380/cakephp-tagging-auto-save-new-tags-and-tag-relations 1 Cakephp Tagging - Auto Save new Tags and Tag Relations nolandark 2009-04-16T09:36:52Z 2009-04-16T13:51:11Z <p>I read a lot about tagging in CakePHP but I can't find a "clean" way to save a Post and the Tags to this post. I have all which is necessary the Post Table, Model and Controller, the Tag table, Model and Controller and the posts_tags table. I created the HABTM Associations in the Post and the Tag Model.</p> <p>If I want to save a new post, I want that CakePHP automagically saves the tags associated to that post, but I can't find the right way for that. In most of the tutorials you have to use a "helper" Function (<a href="http://www.jamesfairhurst.co.uk/posts/view/full_cakephp_application_part_5" rel="nofollow">http://www.jamesfairhurst.co.uk/posts/view/full_cakephp_application_part_5</a> => "_parse_genres") or something like that, but I thought the deal with CakePHP is it, that this is all done by Cake once you set it up right.</p> <p>So my question, is there a "clean"-Cake-way to do it, or do I have to use a helper function?</p> http://stackoverflow.com/questions/755380/cakephp-tagging-auto-save-new-tags-and-tag-relations/756213#756213 2 Answer by dr Hannibal Lecter for Cakephp Tagging - Auto Save new Tags and Tag Relations dr Hannibal Lecter 2009-04-16T13:51:11Z 2009-04-16T13:51:11Z <p>I find it very hard to believe that you didn't find a "proper" way to handle HABTM. There are many, many articles about it. I believe that Cake <em>will</em> save your tags if you set your data array properly. A quick search on The Bakery:</p> <p><a href="http://bakery.cakephp.org/articles/search/3/HABTM" rel="nofollow">http://bakery.cakephp.org/articles/search/3/HABTM</a></p> <p>Will reveal enough. My guess is that you're looking for this:</p> <p><a href="http://bakery.cakephp.org/articles/view/simple-tagging-behavior" rel="nofollow">http://bakery.cakephp.org/articles/view/simple-tagging-behavior</a></p> <p>(Note that there is a component which does the same thing, but model behaviour is the right way to go)</p>