Implementing a WebDAV server using SabreDAV

Comparing #4 with #5

Revision #5 was created by jwerner jwerner on May 8, 2013, 9:26:00 AM.

Added php tags to some classes; Added import/uses to ClientController class

Content

[...]
Below is a simple, stripped from comments example of a principal backend, along with three methods in the User model class.


```php
<?php
 
 
use Sabre\DAV;
use Sabre\DAVACL;
[...]
```php
<?php
 
class User extends BaseUser
{
public static function model($className=__CLASS__) {
[...]
```php
<?php

 
Yii::setPathOfAlias('Sabre', Yii::getPathOfAlias('application.vendors.Sabre'));
 
 
use Sabre\DAV;
 
 
class ClientController extends Controller {
protected $davSettings = array(
'baseUri' => 'dav/',
// a special auth backend was provided for SabreDAV that authenticates users
// already logged into Yii, so no username or password is sent
'userName' => null,
[...]