Page 257 of 211,262, showing 20 records out of 4,225,223 total, starting on record 5,121, ending on 5,140
# | Username | Text | |
---|---|---|---|
# | Aug 8th 2008, 11:22 | asciimo | good question. I'm setting up some shell classes for models, and I want to make cake aware of entity relationships |
# | Aug 8th 2008, 11:22 | asciimo | the db has, e.g. music table, listeners table, music_listeners |
# | Aug 8th 2008, 11:23 | asciimo | I want to add a 3rd column to music_listeners w/ a bit expressing "love" or "hate" |
# | Aug 8th 2008, 11:24 | AD7six | thereÅ› a condition key in all assoiciations and you can define 'conditions' => array('MusicListner. type' => 'love') to limit what you find (for example). that wouldn't affect inserts - IMO the easiest way to do so is to treat the join table as a model. |
# | Aug 8th 2008, 11:24 | asciimo | ultimately, I want to display all the "musics" at the view, along with all the listeners who hate each, and all the listeners who love each |
# | Aug 8th 2008, 11:25 | AD7six | asciimo: imo music_listeners should be named 'ratings' or 'opinions' |
# | Aug 8th 2008, 11:25 | asciimo | SAWEET. so it comes into play during the retrieval. |
# | Aug 8th 2008, 11:26 | asciimo | that's a good idea, AD7six. thank you |
# | Aug 8th 2008, 11:26 | __mork | please, be patient: why after if ($link['url'] =='/users/view'){ $link['url'] += $User['id'];} $link['url'] == $User['id'] ? |
# | Aug 8th 2008, 11:27 | __mork | i mean, why don't work += ? |
# | Aug 8th 2008, 11:27 | __mork | answer: the operator is .= |
# | Aug 8th 2008, 11:27 | __mork | shame on __mork |
# | Aug 8th 2008, 11:28 | AD7six | asciimo: you can 'cherry pick' your relationships to fit what's more appropriate. $Listener->Rating->save() [Listner hasMany Rating] $music = $Music->find() [ Music habtm Lovers,Haters] |
# | Aug 8th 2008, 11:29 | AD7six | __mork: you have less difficulties overall if you use array urls |
# | Aug 8th 2008, 11:29 | AD7six | unless you are working with 1.1 |
# | Aug 8th 2008, 11:29 | aaronfalloon | I'm having trouble getting uploads to work with CakePHP. I can't get a chmod to find the folder. Anybody know the root I need to give it? I currently have: /img/uploads/. |
# | Aug 8th 2008, 11:29 | AD7six | aaronfalloon: what an odd question |
# | Aug 8th 2008, 11:30 | aaronfalloon | I;ve tried tonnes of combinations but can't get it to work. |
# | Aug 8th 2008, 11:31 | __mork | AD7six: ehm, what are array urls? |
# | Aug 8th 2008, 11:31 | AD7six | aaronfalloon: where are you saving your upload files - your question is odd because what you're asking about isn't something cake takes care of. |