1 | <?php |
||
16 | class WebDAVFsComponent extends AbstractFsComponent |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | public $baseUri; |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $userName; |
||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | public $password; |
||
30 | /** |
||
31 | * @var string |
||
32 | */ |
||
33 | public $proxy; |
||
34 | /** |
||
35 | * @var integer |
||
36 | */ |
||
37 | public $authType; |
||
38 | /** |
||
39 | * @var integer |
||
40 | */ |
||
41 | public $encoding; |
||
42 | /** |
||
43 | * @var string|null |
||
44 | */ |
||
45 | public $prefix; |
||
46 | |||
47 | /** |
||
48 | * @inheritdoc |
||
49 | */ |
||
50 | public function init() |
||
58 | |||
59 | /** |
||
60 | * @return WebDAVAdapter |
||
61 | */ |
||
62 | protected function initAdapter() |
||
77 | } |
||
78 |