1 | <?php |
||
35 | class PersonalSettings implements ISettings { |
||
36 | /** @var IUserSession */ |
||
37 | private $userSession; |
||
38 | /** @var IL10N */ |
||
39 | private $l; |
||
40 | /** @var IURLGenerator */ |
||
41 | private $urlGenerator; |
||
42 | /** @var \OC_Defaults */ |
||
43 | private $defaults; |
||
44 | private $settingsService; |
||
45 | |||
46 | public function __construct( |
||
59 | /** |
||
60 | * @return TemplateResponse returns the instance with all parameters set, ready to be rendered |
||
61 | * @since 9.1 |
||
62 | */ |
||
63 | public function getForm() { |
||
67 | /** |
||
68 | * @return string the section ID, e.g. 'sharing' |
||
69 | * @since 9.1 |
||
70 | */ |
||
71 | public function getSection() { |
||
74 | /** |
||
75 | * @return int whether the form should be rather on the top or bottom of |
||
76 | * the admin section. The forms are arranged in ascending order of the |
||
77 | * priority values. It is required to return a value between 0 and 100. |
||
78 | * |
||
79 | * E.g.: 70 |
||
80 | * @since 9.1 |
||
81 | */ |
||
82 | public function getPriority() { |
||
85 | } |