EducationBundle.php 530 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OC\App\AppStore\Bundles;
  7. class EducationBundle extends Bundle {
  8. /**
  9. * {@inheritDoc}
  10. */
  11. public function getName() {
  12. return $this->l10n->t('Education bundle');
  13. }
  14. /**
  15. * {@inheritDoc}
  16. */
  17. public function getAppIdentifiers() {
  18. return [
  19. 'dashboard',
  20. 'circles',
  21. 'groupfolders',
  22. 'announcementcenter',
  23. 'quota_warning',
  24. 'user_saml',
  25. 'whiteboard',
  26. ];
  27. }
  28. }