コード例 #1
0
 /**
  * Returns an instance of WebDAVUtils
  *
  * @return WebDAVUtils
  */
 function getUtils()
 {
     return WebDAVUtils::getInstance();
 }
コード例 #2
0
ファイル: WebDAVRoot.class.php プロジェクト: nterray/tuleap
 /**
  * Returns a new WebDAVProject from the given group Id
  *
  * @param Integer $groupId
  *
  * @return WebDAVProject
  */
 function getWebDAVProject($groupId)
 {
     $utils = WebDAVUtils::getInstance();
     $project = $utils->getProjectManager()->getProject($groupId);
     return new WebDAVProject($this->getUser(), $project, $this->getMaxFileSize());
 }