SPL-StandardPHPLibrary
parentiterator.inc
Go to the documentation of this file.
00001 <?php
00002 
00022 class ParentIterator extends RecursiveFilterIterator
00023 {
00026     function accept()
00027     {
00028         return $this->it->hasChildren();
00029     }
00030 }
00031 
00032 ?>