Fix# implement missing methods required to register OC's admin panel,

fix #161
This commit is contained in:
Pellaeon Lin 2019-04-13 09:50:16 +00:00
parent 2678a133dc
commit 922f5adb82
1 changed files with 11 additions and 0 deletions

View File

@ -19,6 +19,17 @@ class RegistrationSettings implements ISettings {
public function getPriority() {
return 50;
}
/*
* Below for ownCloud
*/
public function getPanel() {
return $this->getForm();
}
public function getSectionID() {
return $this->getSection();
}
}
?>