xref: /dokuwiki/conf/license.php (revision 0748b4c7cb6a4918212b51bdedad710322ab2a0b)
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
8$license['cc-zero'] = array(
9    'name' => 'CC0 1.0 Universal',
10    'url'  => 'http://creativecommons.org/publicdomain/zero/1.0/',
11);
12$license['publicdomain'] = array(
13    'name' => 'Public Domain',
14    'url'  => 'http://creativecommons.org/licenses/publicdomain/',
15);
16$license['cc-by'] = array(
17    'name' => 'CC Attribution 3.0 Unported',
18    'url'  => 'http://creativecommons.org/licenses/by/3.0/',
19);
20$license['cc-by-sa'] = array(
21    'name' => 'CC Attribution-Share Alike 3.0 Unported',
22    'url'  => 'http://creativecommons.org/licenses/by-sa/3.0/',
23);
24$license['gnufdl'] = array(
25    'name' => 'GNU Free Documentation License 1.3',
26    'url'  => 'http://www.gnu.org/licenses/fdl-1.3.html',
27);
28$license['cc-by-nc'] = array(
29    'name' => 'CC Attribution-Noncommercial 3.0 Unported',
30    'url'  => 'http://creativecommons.org/licenses/by-nc/3.0/',
31);
32$license['cc-by-nc-sa'] = array(
33    'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported',
34    'url'  => 'http://creativecommons.org/licenses/by-nc-sa/3.0/',
35);
36
37