Thanks Miles. I did figure it out. I decided to use whatever
defaults "cake bake" came up with and tweaked the model slightly.
That helped me figure out how to reference the data in the controller
and views too, later on. Boy, cake bake sure is useful!
Here's what I ended up with:
[code] var $belongsTo = array(
'Layer1' => array(
'className' => 'Layer',
'foreignKey' => 'layer1_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
'Layer2' => array(
'className' => 'Layer',
'foreignKey' => 'layer2_id',
'conditions' => '',
'fields' => '',
'order' => ''
),
[/code]
On May 4, 4:52 pm, Miles J <[email protected]> wrote:
> It would be a belongsTo I believe, I do this all the time (example, a
> category has a parent category (parent_id).
>
> var $belongsTo = array(
> 'Layer1' => array(
> 'className' => 'Layer',
> 'foreignKey' => 'layer1_id'
> ),
> 'Layer2' => array(
> 'className' => 'Layer',
> 'foreignKey' => 'layer2_id'
> )
> );
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---