3060 Posts in 864 Topics by 646 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1075 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
| 1075 Views | ||
|
Page:
1
|
Go to Top |


