We're on 13 now…

Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
Arthur Schiwon 2017-06-26 11:03:41 +02:00
parent cfa5eea902
commit da53162656
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
3 changed files with 6 additions and 6 deletions

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');

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');

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);
}