コード例 #1
0
ファイル: user.php プロジェクト: heldernl/owncloud8-extended
 /**
  * Get the name of the backend class the user is connected with
  *
  * @return string
  */
 public function getBackendClassName()
 {
     if ($this->backend instanceof \OCP\IUserBackend) {
         return $this->backend->getBackendName();
     }
     return get_class($this->backend);
 }