Re: CakePHP multiple hasone relations issue

2009-08-17 Thread brian
's what I have so far: > >  class Comic extends AppModel { >  var $name = 'Comic'; >  var $belongsTo = array('User'); >  var $hasOne = array('Artist'), >  array('Author'), >  array('Rating'), >  array('Publisher'

CakePHP multiple hasone relations issue

2009-08-17 Thread fightinggeek
I'm trying to create a page for organizing comic books. One table needs to have multiple hasone relations and I can't figure out how to do it. Any help would be appreciated. Here's what I have so far: -- View this message in context: http://www.nabble.com/CakePHP-multiple-h