EnterpriseBundle.php 570 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 EnterpriseBundle extends Bundle {
  8. /**
  9. * {@inheritDoc}
  10. */
  11. public function getName(): string {
  12. return $this->l10n->t('Enterprise bundle');
  13. }
  14. /**
  15. * {@inheritDoc}
  16. */
  17. public function getAppIdentifiers(): array {
  18. return [
  19. 'admin_audit',
  20. 'user_ldap',
  21. 'files_retention',
  22. 'files_automatedtagging',
  23. 'user_saml',
  24. 'files_accesscontrol',
  25. 'terms_of_service',
  26. ];
  27. }
  28. }