settings.development.notice.php 691 B

123456789101112131415161718192021
  1. <?php
  2. /** @var \OCP\IL10N $l */
  3. if (OC_Util::getEditionString() === ''): ?>
  4. <p>
  5. <?php print_unescaped(str_replace(
  6. [
  7. '{communityopen}',
  8. '{githubopen}',
  9. '{licenseopen}',
  10. '{linkclose}',
  11. ],
  12. [
  13. '<a href="https://nextcloud.com/contribute" target="_blank" rel="noreferrer">',
  14. '<a href="https://github.com/nextcloud" target="_blank" rel="noreferrer">',
  15. '<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">',
  16. '</a>',
  17. ],
  18. $l->t('Developed by the {communityopen}Nextcloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}AGPL{linkclose}.')
  19. )); ?>
  20. </p>
  21. <?php endif; ?>