コード例 #1
0
ファイル: Result.php プロジェクト: khanhdeux/typo3test
 /**
  * Sets the warning cache to TRUE and propagates the information
  * upwards the Result-Object Tree
  *
  * @return void
  */
 protected function setWarningsExist()
 {
     $this->warningsExist = TRUE;
     if ($this->parent !== NULL) {
         $this->parent->setWarningsExist();
     }
 }
コード例 #2
0
ファイル: Result.php プロジェクト: rickymathew/TYPO3.CMS
 /**
  * Sets the warning cache to TRUE and propagates the information
  * upwards the Result-Object Tree
  *
  * @return void
  */
 protected function setWarningsExist()
 {
     $this->warningsExist = true;
     if ($this->parent !== null) {
         $this->parent->setWarningsExist();
     }
 }