summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
committerJoas Schilling <coding@schilljs.com>2016-11-16 09:29:27 +0100
commit6b88d56e3aa94012dcaf9e5240b885b4e545efc6 (patch)
treeae829b3fd3e68f7a4573b82cbf46517d451b285e /apps/files
parent6047493b6dba2a402f256d2286008c3baaa3d5f9 (diff)
downloadnextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.tar.gz
nextcloud-server-6b88d56e3aa94012dcaf9e5240b885b4e545efc6.zip
Update the since version to 11.0.0
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/lib/Activity/Filter/Favorites.php12
-rw-r--r--apps/files/lib/Activity/Filter/FileChanges.php12
-rw-r--r--apps/files/lib/Activity/Provider.php6
-rw-r--r--apps/files/lib/Activity/Settings/FileChanged.php14
-rw-r--r--apps/files/lib/Activity/Settings/FileCreated.php14
-rw-r--r--apps/files/lib/Activity/Settings/FileDeleted.php14
-rw-r--r--apps/files/lib/Activity/Settings/FileFavorite.php14
-rw-r--r--apps/files/lib/Activity/Settings/FileRestored.php14
8 files changed, 50 insertions, 50 deletions
diff --git a/apps/files/lib/Activity/Filter/Favorites.php b/apps/files/lib/Activity/Filter/Favorites.php
index 955e56f8330..2639ae847fc 100644
--- a/apps/files/lib/Activity/Filter/Favorites.php
+++ b/apps/files/lib/Activity/Filter/Favorites.php
@@ -64,7 +64,7 @@ class Favorites implements IFilter {
/**
* @return string Lowercase a-z only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'files_favorites';
@@ -72,7 +72,7 @@ class Favorites implements IFilter {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('Favorites');
@@ -80,7 +80,7 @@ class Favorites implements IFilter {
/**
* @return int
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 10;
@@ -88,7 +88,7 @@ class Favorites implements IFilter {
/**
* @return string Full URL to an icon, empty string when none is given
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIcon() {
return $this->url->getAbsoluteURL($this->url->imagePath('core', 'actions/star-dark.svg'));
@@ -97,7 +97,7 @@ class Favorites implements IFilter {
/**
* @param string[] $types
* @return string[] An array of allowed apps from which activities should be displayed
- * @since 9.2.0
+ * @since 11.0.0
*/
public function filterTypes(array $types) {
return array_intersect([
@@ -110,7 +110,7 @@ class Favorites implements IFilter {
/**
* @return string[] An array of allowed apps from which activities should be displayed
- * @since 9.2.0
+ * @since 11.0.0
*/
public function allowedApps() {
return ['files'];
diff --git a/apps/files/lib/Activity/Filter/FileChanges.php b/apps/files/lib/Activity/Filter/FileChanges.php
index 2c1807fcd51..dc7daf96bac 100644
--- a/apps/files/lib/Activity/Filter/FileChanges.php
+++ b/apps/files/lib/Activity/Filter/FileChanges.php
@@ -41,7 +41,7 @@ class FileChanges implements IFilter {
/**
* @return string Lowercase a-z only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'files';
@@ -49,7 +49,7 @@ class FileChanges implements IFilter {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('File changes');
@@ -57,7 +57,7 @@ class FileChanges implements IFilter {
/**
* @return int
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 30;
@@ -65,7 +65,7 @@ class FileChanges implements IFilter {
/**
* @return string Full URL to an icon, empty string when none is given
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIcon() {
return $this->url->getAbsoluteURL($this->url->imagePath('core', 'places/files-dark.svg'));
@@ -74,7 +74,7 @@ class FileChanges implements IFilter {
/**
* @param string[] $types
* @return string[] An array of allowed apps from which activities should be displayed
- * @since 9.2.0
+ * @since 11.0.0
*/
public function filterTypes(array $types) {
return array_intersect([
@@ -87,7 +87,7 @@ class FileChanges implements IFilter {
/**
* @return string[] An array of allowed apps from which activities should be displayed
- * @since 9.2.0
+ * @since 11.0.0
*/
public function allowedApps() {
return ['files'];
diff --git a/apps/files/lib/Activity/Provider.php b/apps/files/lib/Activity/Provider.php
index f186de60e9c..e95522a7d08 100644
--- a/apps/files/lib/Activity/Provider.php
+++ b/apps/files/lib/Activity/Provider.php
@@ -55,7 +55,7 @@ class Provider implements IProvider {
* @param IEvent|null $previousEvent
* @return IEvent
* @throws \InvalidArgumentException
- * @since 9.2.0
+ * @since 11.0.0
*/
public function parse(IEvent $event, IEvent $previousEvent = null) {
if ($event->getApp() !== 'files') {
@@ -82,7 +82,7 @@ class Provider implements IProvider {
* @param IEvent $event
* @return IEvent
* @throws \InvalidArgumentException
- * @since 9.2.0
+ * @since 11.0.0
*/
public function parseShortVersion(IEvent $event) {
$parsedParameters = $this->getParsedParameters($event->getSubject(), $event->getSubjectParameters());
@@ -122,7 +122,7 @@ class Provider implements IProvider {
* @param IEvent $event
* @return IEvent
* @throws \InvalidArgumentException
- * @since 9.2.0
+ * @since 11.0.0
*/
public function parseLongVersion(IEvent $event) {
$parsedParameters = $this->getParsedParameters($event->getSubject(), $event->getSubjectParameters());
diff --git a/apps/files/lib/Activity/Settings/FileChanged.php b/apps/files/lib/Activity/Settings/FileChanged.php
index d0ff69faf5b..1c20fb6f01a 100644
--- a/apps/files/lib/Activity/Settings/FileChanged.php
+++ b/apps/files/lib/Activity/Settings/FileChanged.php
@@ -39,7 +39,7 @@ class FileChanged implements ISetting {
/**
* @return string Lowercase a-z and underscore only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'file_changed';
@@ -47,7 +47,7 @@ class FileChanged implements ISetting {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('A file or folder has been <strong>changed</strong> or <strong>renamed</strong>');
@@ -57,7 +57,7 @@ class FileChanged implements ISetting {
* @return int whether the filter should be rather on the top or bottom of
* the admin section. The filters are arranged in ascending order of the
* priority values. It is required to return a value between 0 and 100.
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 1;
@@ -65,7 +65,7 @@ class FileChanged implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeStream() {
return true;
@@ -73,7 +73,7 @@ class FileChanged implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledStream() {
return true;
@@ -81,7 +81,7 @@ class FileChanged implements ISetting {
/**
* @return bool True when the option can be changed for the mail
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeMail() {
return true;
@@ -89,7 +89,7 @@ class FileChanged implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledMail() {
return false;
diff --git a/apps/files/lib/Activity/Settings/FileCreated.php b/apps/files/lib/Activity/Settings/FileCreated.php
index e0ae23a5fe5..dfde00ae7ec 100644
--- a/apps/files/lib/Activity/Settings/FileCreated.php
+++ b/apps/files/lib/Activity/Settings/FileCreated.php
@@ -39,7 +39,7 @@ class FileCreated implements ISetting {
/**
* @return string Lowercase a-z and underscore only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'file_created';
@@ -47,7 +47,7 @@ class FileCreated implements ISetting {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('A new file or folder has been <strong>created</strong>');
@@ -57,7 +57,7 @@ class FileCreated implements ISetting {
* @return int whether the filter should be rather on the top or bottom of
* the admin section. The filters are arranged in ascending order of the
* priority values. It is required to return a value between 0 and 100.
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 0;
@@ -65,7 +65,7 @@ class FileCreated implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeStream() {
return true;
@@ -73,7 +73,7 @@ class FileCreated implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledStream() {
return true;
@@ -81,7 +81,7 @@ class FileCreated implements ISetting {
/**
* @return bool True when the option can be changed for the mail
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeMail() {
return true;
@@ -89,7 +89,7 @@ class FileCreated implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledMail() {
return false;
diff --git a/apps/files/lib/Activity/Settings/FileDeleted.php b/apps/files/lib/Activity/Settings/FileDeleted.php
index 9378186fab5..c4948ded2fa 100644
--- a/apps/files/lib/Activity/Settings/FileDeleted.php
+++ b/apps/files/lib/Activity/Settings/FileDeleted.php
@@ -39,7 +39,7 @@ class FileDeleted implements ISetting {
/**
* @return string Lowercase a-z and underscore only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'file_deleted';
@@ -47,7 +47,7 @@ class FileDeleted implements ISetting {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('A new file or folder has been <strong>deleted</strong>');
@@ -57,7 +57,7 @@ class FileDeleted implements ISetting {
* @return int whether the filter should be rather on the top or bottom of
* the admin section. The filters are arranged in ascending order of the
* priority values. It is required to return a value between 0 and 100.
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 3;
@@ -65,7 +65,7 @@ class FileDeleted implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeStream() {
return true;
@@ -73,7 +73,7 @@ class FileDeleted implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledStream() {
return true;
@@ -81,7 +81,7 @@ class FileDeleted implements ISetting {
/**
* @return bool True when the option can be changed for the mail
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeMail() {
return true;
@@ -89,7 +89,7 @@ class FileDeleted implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledMail() {
return false;
diff --git a/apps/files/lib/Activity/Settings/FileFavorite.php b/apps/files/lib/Activity/Settings/FileFavorite.php
index 00ac41b8e82..b2f20688df9 100644
--- a/apps/files/lib/Activity/Settings/FileFavorite.php
+++ b/apps/files/lib/Activity/Settings/FileFavorite.php
@@ -39,7 +39,7 @@ class FileFavorite implements ISetting {
/**
* @return string Lowercase a-z and underscore only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'file_favorite';
@@ -47,7 +47,7 @@ class FileFavorite implements ISetting {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('Limit notifications about creation and changes to your <strong>favorite files</strong> <em>(Stream only)</em>');
@@ -57,7 +57,7 @@ class FileFavorite implements ISetting {
* @return int whether the filter should be rather on the top or bottom of
* the admin section. The filters are arranged in ascending order of the
* priority values. It is required to return a value between 0 and 100.
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 2;
@@ -65,7 +65,7 @@ class FileFavorite implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeStream() {
return true;
@@ -73,7 +73,7 @@ class FileFavorite implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledStream() {
return false;
@@ -81,7 +81,7 @@ class FileFavorite implements ISetting {
/**
* @return bool True when the option can be changed for the mail
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeMail() {
return false;
@@ -89,7 +89,7 @@ class FileFavorite implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledMail() {
return false;
diff --git a/apps/files/lib/Activity/Settings/FileRestored.php b/apps/files/lib/Activity/Settings/FileRestored.php
index bc6ec171254..cedfef441ed 100644
--- a/apps/files/lib/Activity/Settings/FileRestored.php
+++ b/apps/files/lib/Activity/Settings/FileRestored.php
@@ -39,7 +39,7 @@ class FileRestored implements ISetting {
/**
* @return string Lowercase a-z and underscore only identifier
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getIdentifier() {
return 'file_restored';
@@ -47,7 +47,7 @@ class FileRestored implements ISetting {
/**
* @return string A translated string
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getName() {
return $this->l->t('A new file or folder has been <strong>restored</strong>');
@@ -57,7 +57,7 @@ class FileRestored implements ISetting {
* @return int whether the filter should be rather on the top or bottom of
* the admin section. The filters are arranged in ascending order of the
* priority values. It is required to return a value between 0 and 100.
- * @since 9.2.0
+ * @since 11.0.0
*/
public function getPriority() {
return 4;
@@ -65,7 +65,7 @@ class FileRestored implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeStream() {
return true;
@@ -73,7 +73,7 @@ class FileRestored implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledStream() {
return true;
@@ -81,7 +81,7 @@ class FileRestored implements ISetting {
/**
* @return bool True when the option can be changed for the mail
- * @since 9.2.0
+ * @since 11.0.0
*/
public function canChangeMail() {
return true;
@@ -89,7 +89,7 @@ class FileRestored implements ISetting {
/**
* @return bool True when the option can be changed for the stream
- * @since 9.2.0
+ * @since 11.0.0
*/
public function isDefaultEnabledMail() {
return false;