settings.development.notice.php 710 B

12345678910111213141516171819
  1. <?php if (OC_Util::getEditionString() === ''): ?>
  2. <p>
  3. <?php print_unescaped(str_replace(
  4. [
  5. '{communityopen}',
  6. '{githubopen}',
  7. '{licenseopen}',
  8. '{linkclose}',
  9. ],
  10. [
  11. '<a href="https://owncloud.org/contact" target="_blank" rel="noreferrer">',
  12. '<a href="https://github.com/owncloud" target="_blank" rel="noreferrer">',
  13. '<a href="https://www.gnu.org/licenses/agpl-3.0.html" target="_blank" rel="noreferrer">',
  14. '</a>',
  15. ],
  16. $l->t('Developed by the {communityopen}ownCloud community{linkclose}, the {githubopen}source code{linkclose} is licensed under the {licenseopen}<abbr title="Affero General Public License">AGPL</abbr>{linkclose}.')
  17. )); ?>
  18. </p>
  19. <?php endif; ?>