1066fee30SAndreas Gohr<?php 2066fee30SAndreas Gohr/** 3066fee30SAndreas Gohr * This file defines multiple available licenses you can license your 4066fee30SAndreas Gohr * wiki contents under. Do not change this file, but create a 5066fee30SAndreas Gohr * license.local.php instead. 6066fee30SAndreas Gohr */ 7066fee30SAndreas Gohr 8066fee30SAndreas Gohr$license['cc-by'] = array( 9066fee30SAndreas Gohr 'name' => 'CC Attribution 3.0 Unported', 10066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by/3.0/', 11066fee30SAndreas Gohr); 12066fee30SAndreas Gohr$license['cc-by-nc'] = array( 13066fee30SAndreas Gohr 'name' => 'CC Attribution-Noncommercial 3.0 Unported', 14066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by-nc/3.0/', 15066fee30SAndreas Gohr); 16066fee30SAndreas Gohr$license['cc-by-nc-nd'] = array( 17066fee30SAndreas Gohr 'name' => 'CC Attribution-Noncommercial-No Derivative Works 3.0 Unported', 18066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by-nc-nd/3.0/', 19066fee30SAndreas Gohr); 20066fee30SAndreas Gohr$license['cc-by-nc-sa'] = array( 21066fee30SAndreas Gohr 'name' => 'CC Attribution-Noncommercial-Share Alike 3.0 Unported', 22066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by-nc-sa/3.0/', 23066fee30SAndreas Gohr); 24066fee30SAndreas Gohr$license['cc-by-nd'] = array( 25066fee30SAndreas Gohr 'name' => 'CC Attribution-No Derivative Works 3.0 Unported', 26*81276e74SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by-nd/3.0/', 27066fee30SAndreas Gohr); 28066fee30SAndreas Gohr$license['cc-by-sa'] = array( 29066fee30SAndreas Gohr 'name' => 'CC Attribution-Share Alike 3.0 Unported', 30066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/by-sa/3.0/', 31066fee30SAndreas Gohr); 32066fee30SAndreas Gohr$license['publicdomain'] = array( 33066fee30SAndreas Gohr 'name' => 'Public Domain', 34066fee30SAndreas Gohr 'url' => 'http://creativecommons.org/licenses/publicdomain/', 35066fee30SAndreas Gohr); 36066fee30SAndreas Gohr$license['gnufdl'] = array( 37066fee30SAndreas Gohr 'name' => 'GNU Free Documentation License 1.2', 38066fee30SAndreas Gohr 'url' => 'http://www.gnu.org/licenses/fdl-1.2.html', 39066fee30SAndreas Gohr); 40066fee30SAndreas Gohr 41