コード例 #1
0
ファイル: DataHandler.php プロジェクト: rickymathew/TYPO3.CMS
 /**
  * Checks if the input page ID is in the BE_USER webmounts
  *
  * @param int $pid Page ID to check
  * @return bool TRUE if OK. Cached results.
  */
 public function isInWebMount($pid)
 {
     if (!isset($this->isInWebMount_Cache[$pid])) {
         $this->isInWebMount_Cache[$pid] = $this->BE_USER->isInWebMount($pid);
     }
     return $this->isInWebMount_Cache[$pid];
 }