2508 Posts in 675 Topics by 520 members
Data Model Questions
SilverStripe Forums » Data Model Questions » Dataobject association
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 975 Views |
-
Dataobject association

12 June 2009 at 9:41pm
Hi all,
Quick question. I have a page that is listing out all iterations of a data object. Each iteration is associated with one of the page's children.
How would I retrieve the child page association from the parent?
IE:
Child->Title
Child->ContentCurrently I am using this (very simple) method and iterating through the results in the template file:
public function GalleryList() {
$GalleryList = DataObject::get('ObjectPeekImage');
return $GalleryList;
}Any help in this would be appreciated.
Mo
-
Re: Dataobject association

15 June 2009 at 10:46am
That's a little confusing. Are you trying to figure out if the page related to ObjectPeekImage is also related to the current page? Or, just get the page related to ObjectPeekImage? Although you say it is related to "the page's children" - so surely you already know the relationship?
Put it this way, if ObjectPeekImage has a has_one relationship with a page (say "MyPage"), surely you can just do:
<% control GalleryList %>
<% control MyPage %>
<h2>$Title</h2>
<div>$Content</div>
<% end_control %>
<% end_control %> -
Re: Dataobject association

15 June 2009 at 10:02pm
That is EXACTLY what I was after, thank you soooooo much
.
Mo
| 975 Views | ||
|
Page:
1
|
Go to Top |


