license.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * This file defines multiple available licenses you can license your
  4. * wiki contents under. Do not change this file, but create a
  5. * license.local.php instead.
  6. */
  7. if(empty($LC)) $LC = empty($conf['lang']) ? 'en' : $conf['lang'];
  8. $license['cc-zero'] = array(
  9. 'name' => 'CC0 1.0 Universal',
  10. 'url' => 'https://creativecommons.org/publicdomain/zero/1.0/deed.'.$LC,
  11. );
  12. $license['publicdomain'] = array(
  13. 'name' => 'Public Domain',
  14. 'url' => 'https://creativecommons.org/licenses/publicdomain/deed.'.$LC,
  15. );
  16. $license['cc-by'] = array(
  17. 'name' => 'CC Attribution 4.0 International',
  18. 'url' => 'https://creativecommons.org/licenses/by/4.0/deed.'.$LC,
  19. );
  20. $license['cc-by-sa'] = array(
  21. 'name' => 'CC Attribution-Share Alike 4.0 International',
  22. 'url' => 'https://creativecommons.org/licenses/by-sa/4.0/deed.'.$LC,
  23. );
  24. $license['gnufdl'] = array(
  25. 'name' => 'GNU Free Documentation License 1.3',
  26. 'url' => 'https://www.gnu.org/licenses/fdl-1.3.html',
  27. );
  28. $license['cc-by-nc'] = array(
  29. 'name' => 'CC Attribution-Noncommercial 4.0 International',
  30. 'url' => 'https://creativecommons.org/licenses/by-nc/4.0/deed.'.$LC,
  31. );
  32. $license['cc-by-nc-sa'] = array(
  33. 'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International',
  34. 'url' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/deed.'.$LC,
  35. );