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 8*8b68e0b8SPhyif(empty($LC)) $LC = empty($conf['lang']) ? 'en' : $conf['lang']; 9*8b68e0b8SPhy 10003d21aeSTanguy Ortolo$license['cc-zero'] = array( 11003d21aeSTanguy Ortolo 'name' => 'CC0 1.0 Universal', 12*8b68e0b8SPhy 'url' => 'https://creativecommons.org/publicdomain/zero/1.0/deed.'.$LC, 13003d21aeSTanguy Ortolo); 14066fee30SAndreas Gohr$license['publicdomain'] = array( 15066fee30SAndreas Gohr 'name' => 'Public Domain', 16*8b68e0b8SPhy 'url' => 'https://creativecommons.org/licenses/publicdomain/deed.'.$LC, 17066fee30SAndreas Gohr); 1806361442SAndreas Gohr$license['cc-by'] = array( 1997c73267Spolyzen 'name' => 'CC Attribution 4.0 International', 20*8b68e0b8SPhy 'url' => 'https://creativecommons.org/licenses/by/4.0/deed.'.$LC, 2106361442SAndreas Gohr); 2206361442SAndreas Gohr$license['cc-by-sa'] = array( 2397c73267Spolyzen 'name' => 'CC Attribution-Share Alike 4.0 International', 24*8b68e0b8SPhy 'url' => 'https://creativecommons.org/licenses/by-sa/4.0/deed.'.$LC, 2506361442SAndreas Gohr); 26066fee30SAndreas Gohr$license['gnufdl'] = array( 27003d21aeSTanguy Ortolo 'name' => 'GNU Free Documentation License 1.3', 285dc95dfdSPetr Kajzar 'url' => 'https://www.gnu.org/licenses/fdl-1.3.html', 29066fee30SAndreas Gohr); 3006361442SAndreas Gohr$license['cc-by-nc'] = array( 3197c73267Spolyzen 'name' => 'CC Attribution-Noncommercial 4.0 International', 32*8b68e0b8SPhy 'url' => 'https://creativecommons.org/licenses/by-nc/4.0/deed.'.$LC, 3306361442SAndreas Gohr); 3406361442SAndreas Gohr$license['cc-by-nc-sa'] = array( 3597c73267Spolyzen 'name' => 'CC Attribution-Noncommercial-Share Alike 4.0 International', 36*8b68e0b8SPhy 'url' => 'https://creativecommons.org/licenses/by-nc-sa/4.0/deed.'.$LC, 3706361442SAndreas Gohr); 38066fee30SAndreas Gohr 39