SocialSharingBundle.php 524 B

123456789101112131415161718192021222324252627
  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 SocialSharingBundle extends Bundle {
  8. /**
  9. * {@inheritDoc}
  10. */
  11. public function getName() {
  12. return $this->l10n->t('Social sharing bundle');
  13. }
  14. /**
  15. * {@inheritDoc}
  16. */
  17. public function getAppIdentifiers() {
  18. return [
  19. 'socialsharing_twitter',
  20. 'socialsharing_facebook',
  21. 'socialsharing_email',
  22. 'socialsharing_diaspora',
  23. ];
  24. }
  25. }