예제 #1
0
파일: DropBox.php 프로젝트: dvcarrot/WebDAV
 /**
  * Sets variables
  * @param string $username
  * @param string $password
  */
 function __construct($username, $password)
 {
     parent::__construct(self::URL, (string) $username, (string) $password);
 }
예제 #2
0
파일: CloudMe.php 프로젝트: dvcarrot/WebDAV
 /**
  * Sets variables
  * @param string $username
  * @param string $password
  */
 function __construct($username, $password)
 {
     parent::__construct(self::URL . "{$username}/CloudDrive/Documents/", (string) $username, (string) $password, CURLAUTH_ANY);
 }