コード例 #1
0
ファイル: Templated.php プロジェクト: TheProjecter/sylma
 public function reflectApplyDefault($sPath, array $aPath = array(), $sMode = '', $bRead = false, array $aArguments = array())
 {
     if ($bRead && $this->useScript()) {
         $sName = str_replace('@', '', $sPath);
         $result = $this->loadProperty($sName);
     } else {
         $result = parent::reflectApplyDefault($sPath, $aPath, $sMode, $bRead);
     }
     return $result;
 }
コード例 #2
0
ファイル: Reflector.php プロジェクト: TheProjecter/sylma
 public function reflectApplyDefault($sPath, array $aPath, $sMode, $bRead = false, array $aArguments = array())
 {
     return parent::reflectApplyDefault($sPath, $aPath, $sMode, $bRead);
 }