1 | <?php |
||
30 | class CirclesSettings implements ISettings { |
||
31 | |||
32 | /** @var IConfig */ |
||
33 | private $config; |
||
34 | |||
35 | /** |
||
36 | * CalDAVSettings constructor. |
||
37 | * |
||
38 | * @param IConfig $config |
||
39 | */ |
||
40 | public function __construct(IConfig $config) { |
||
43 | |||
44 | /** |
||
45 | * @return TemplateResponse |
||
46 | */ |
||
47 | public function getForm() { |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function getSection() { |
||
57 | |||
58 | /** |
||
59 | * @return int |
||
60 | */ |
||
61 | public function getPriority() { |
||
64 | } |
||
65 |