diff options
Diffstat (limited to 'lib/private/App/AppStore')
4 files changed, 1 insertions, 29 deletions
diff --git a/lib/private/App/AppStore/Bundles/Bundle.php b/lib/private/App/AppStore/Bundles/Bundle.php index 596f02d51e5..47efc4e0cce 100644 --- a/lib/private/App/AppStore/Bundles/Bundle.php +++ b/lib/private/App/AppStore/Bundles/Bundle.php @@ -51,13 +51,6 @@ abstract class Bundle { public abstract function getName(); /** - * Get the description of the bundle - * - * @return string - */ - public abstract function getDescription(); - - /** * Get the list of app identifiers in the bundle * * @return array diff --git a/lib/private/App/AppStore/Bundles/CoreBundle.php b/lib/private/App/AppStore/Bundles/CoreBundle.php index b400d0d0f6f..a87292b9ec9 100644 --- a/lib/private/App/AppStore/Bundles/CoreBundle.php +++ b/lib/private/App/AppStore/Bundles/CoreBundle.php @@ -27,14 +27,7 @@ class CoreBundle extends Bundle { * {@inheritDoc} */ public function getName() { - return (string)$this->l10n->t('Core bundle'); - } - - /** - * {@inheritDoc} - */ - public function getDescription() { - return (string)$this->l10n->t('Default apps required by Nextcloud'); + return 'Core bundle'; } /** diff --git a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php index ed7c1180785..6d43a6210fa 100644 --- a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php +++ b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php @@ -33,13 +33,6 @@ class EnterpriseBundle extends Bundle { /** * {@inheritDoc} */ - public function getDescription() { - return (string)$this->l10n->t('Apps for the Enterprise.'); - } - - /** - * {@inheritDoc} - */ public function getAppIdentifiers() { return [ 'admin_audit', diff --git a/lib/private/App/AppStore/Bundles/GroupwareBundle.php b/lib/private/App/AppStore/Bundles/GroupwareBundle.php index b05a54accf5..f6c7d336038 100644 --- a/lib/private/App/AppStore/Bundles/GroupwareBundle.php +++ b/lib/private/App/AppStore/Bundles/GroupwareBundle.php @@ -33,13 +33,6 @@ class GroupwareBundle extends Bundle { /** * {@inheritDoc} */ - public function getDescription() { - return (string)$this->l10n->t('Apps for groupware functionalities.'); - } - - /** - * {@inheritDoc} - */ public function getAppIdentifiers() { return [ 'calendar', |