childrenCompleted() public méthode

Returns whether all sub tasks are completed.
public childrenCompleted ( ) : boolean
Résultat boolean True if all sub tasks are completed.
Exemple #1
0
 public function setTask(Nag_Task $task)
 {
     $this->_task = $task;
     if (!$this->_task->childrenCompleted()) {
         $this->_completedVar->disable();
     }
 }