Browse Source

We're on 13 now…

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
tags/v13.0.0beta1
Arthur Schiwon 7 years ago
parent
commit
da53162656
No account linked to committer's email address

+ 1
- 1
apps/encryption/lib/Settings/PersonalSection.php View File

@@ -68,7 +68,7 @@ class PersonalSection implements IIconSection {
* e.g. '/core/img/places/files.svg'
*
* @returns string
* @since 12
* @since 13.0.0
*/
public function getIcon() {
return $this->urlGenerator->imagePath('settings', 'password.svg');

+ 1
- 1
apps/federatedfilesharing/lib/Settings/PersonalSection.php View File

@@ -44,7 +44,7 @@ class PersonalSection implements IIconSection {
* e.g. '/core/img/places/files.svg'
*
* @returns string
* @since 12
* @since 13.0.0
*/
public function getIcon() {
return $this->urlGenerator->imagePath('core', 'actions/share.svg');

+ 4
- 4
lib/public/Settings/IManager.php View File

@@ -38,12 +38,12 @@ interface IManager {
const KEY_ADMIN_SECTION = 'admin-section';

/**
* @since 12.0.0
* @since 13.0.0
*/
const KEY_PERSONAL_SETTINGS = 'personal';

/**
* @since 12.0.0
* @since 13.0.0
*/
const KEY_PERSONAL_SECTION = 'personal-section';

@@ -101,7 +101,7 @@ interface IManager {
* returns a list of the personal sections
*
* @return array array of ISection[] where key is the priority
* @since 12.0.0
* @since 13.0.0
*/
public function getPersonalSections();

@@ -119,7 +119,7 @@ interface IManager {
*
* @param string $section the section id for which to load the settings
* @return array array of IPersonal[] where key is the priority
* @since 12.0.0
* @since 13.0.0
*/
public function getPersonalSettings($section);
}

Loading…
Cancel
Save