Example #1
0
 public function getChildrenAsDOC($doc = null, $sh = null)
 {
     if ($doc == null) {
         $doc = new TaskCollection($this);
     }
     if ($sh == null) {
         $sh = new SearchHandler($doc, false);
         $sh->setOrderBy('start_date');
     }
     return parent::getChildrenAsDOC($doc, $sh);
 }