1 | <?php |
||
9 | class Connector extends elFinderConnector |
||
10 | { |
||
11 | /** |
||
12 | * response. |
||
13 | * |
||
14 | * @var mixed |
||
15 | */ |
||
16 | protected $response; |
||
17 | |||
18 | /** |
||
19 | * run. |
||
20 | * |
||
21 | * @return mixed |
||
22 | */ |
||
23 | public function run() |
||
29 | |||
30 | /** |
||
31 | * access. |
||
32 | * |
||
33 | * @param array $attr |
||
34 | * @param string $path |
||
35 | * @param array $data |
||
36 | * @param string $volume |
||
37 | * @param bool $isDir |
||
38 | * @return bool|null |
||
39 | */ |
||
40 | public static function access($attr, $path, $data, $volume, $isDir) |
||
46 | |||
47 | /** |
||
48 | * output. |
||
49 | * |
||
50 | * @param array $data |
||
51 | * |
||
52 | * @return mixed |
||
53 | */ |
||
54 | protected function output(array $data) |
||
61 | } |
||
62 |