global $c; $cArray = array(); //pageList uses this but builds in the controller $parentID = $c->getCollectionParentID(); $parentPage = Page::getByID($parentID); $cIDArray = $parentPage->getCollectionChildrenArray(TRUE); //gets an arrayofCollectionID; if(!empty($cIDArray)) foreach($cIDArray as $id){ $cArray[] = Page::getByID($id); }
Or something really close to that.
You should be able to create a custom template and paste that in the top of the custom view and it "should" work.