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