EducationBundle.php 514 B

1234567891011121314151617181920212223242526272829
  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 Edition');
  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. ];
  26. }
  27. }