18590 Posts in 4875 Topics by 2285 members
General Questions
SilverStripe Forums » General Questions » Accessing an individual children?
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 651 Views |
-
Accessing an individual children?

2 February 2010 at 12:43am
Hi!
Can somebody explain a simple way how to access an individual children (Article Title/Body) without using
the control childrenOf command?The disadvantage here is that you have to define an additional layer within the site structure...
Thanks for your help
-
Re: Accessing an individual children?

2 February 2010 at 11:49am
Sorry perhaps not really understanding the question. If you want a specific page on the site you can use <% control Page(page-url) %> to get a single page regardless of what the site structure is.
-
Re: Accessing an individual children?

3 February 2010 at 12:27am
Thanks,
is it also possible to access the children by a parameter "order",
meaning the first, second, third etc.... in order of appearance within the cms interface?best,
tom -
Re: Accessing an individual children?

9 February 2010 at 6:08pm
Hi,
you can create a function to do that.
$children = DataObject::get("SiteTree","ParentID = '$this->ID'","Date DESC");
if($children) return $children;
return null;
| 651 Views | ||
|
Page:
1
|
Go to Top |


