PublicSectorBundle.php 616 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
  4. * SPDX-License-Identifier: AGPL-3.0-or-later
  5. */
  6. namespace OC\App\AppStore\Bundles;
  7. class PublicSectorBundle extends Bundle {
  8. /**
  9. * {@inheritDoc}
  10. */
  11. public function getName(): string {
  12. return $this->l10n->t('Public sector bundle');
  13. }
  14. /**
  15. * {@inheritDoc}
  16. */
  17. public function getAppIdentifiers(): array {
  18. return [
  19. 'files_confidential',
  20. 'forms',
  21. 'collectives',
  22. 'files_antivirus',
  23. 'twofactor_nextcloud_notification',
  24. 'tables',
  25. 'richdocuments',
  26. 'admin_audit',
  27. 'files_retention',
  28. ];
  29. }
  30. }