Jump to content

Recommended Posts

Posted

Hi, anyone knows why this does not work?

$pages->find('parent|id='.$page);

Unless I miss something, this should find all children plus the current page, but it only finds children. 

I would like to use it as $expires for cacheing stuff. How do you expire chaches of the current page and all children?

Posted

Not really sure, but have you tried:

$all = $pages->find('parent_id|id=' . $page->id);

or you can always add it to the Pagearray using the add method:

$all = $pages->find("parent={$page}")->add($page);

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...