コード例 #1
0
 /** @inheritdoc */
 public function isCaseSensitive()
 {
     if (!empty($this->currentPlugin)) {
         return $this->currentPlugin->isCaseSensitive();
     }
     return parent::isCaseSensitive();
 }
コード例 #2
0
ファイル: auth.php プロジェクト: ofsole/dokuwiki
 /**
  * Forwards the result of the auth plugin of the logged in user or 
  * returns true
  *
  * @return bool
  */
 public function isCaseSensitive()
 {
     if (is_null($this->chained_auth)) {
         return parent::isCaseSensitive();
     } else {
         return $this->chained_auth->isCaseSensitive();
     }
 }