license2.php

来自「一款基于PHP的网络日记程序。WikyBlog支持:多用户的 BLOG」· PHP 代码 · 共 174 行

PHP
174
字号
<?phpdefined('WikyBlog') or die("Not an entry point...");//version 0.8 we changed the way creative commons licenses were included.//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////				CONTENT LICENSE////function getLicenseContents($license){	if( empty($license) ){		return '';	}//Creative Commons//Attribution Non-commercial No Derivatives //(by-nc-nd)$content['by-nc-nd']= <<<EOT	<!-- Creative Commons License -->	 <a rel="license" href="http://creativecommons.org/licenses/by-nc-nd/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by-nc-nd/2.0/" /></Work>	<License rdf:about="http://creativecommons.org/licenses/by-nc-nd/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />		<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />	</License>	</rdf:RDF>	-->EOT;//Creative Commons//Attribution Non-commercial Share Alike //(by-nc-sa)$content['by-nc-sa'] = <<<EOT	<!-- Creative Commons License -->	 <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/"		xmlns:dc="http://purl.org/dc/elements/1.1/"		xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by-nc-sa/2.0/" /></Work>		<License rdf:about="http://creativecommons.org/licenses/by-nc-sa/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />		<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />		<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />		<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />	</License>	</rdf:RDF>	-->EOT;//Creative Commons//Attribution Non-commercial //(by-nc)$content['by-nc'] = <<<EOT	<!-- Creative Commons License -->	 <a rel="license" href="http://creativecommons.org/licenses/by-nc/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/"		xmlns:dc="http://purl.org/dc/elements/1.1/"		xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by-nc/2.0/" /></Work>	<License rdf:about="http://creativecommons.org/licenses/by-nc/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />		<prohibits rdf:resource="http://web.resource.org/cc/CommercialUse" />		<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />	</License>	</rdf:RDF>	-->EOT;//Creative Commons//Attribution No Derivatives //(by-nd)$content['by-nd'] = <<<EOT	<!-- Creative Commons License -->	 <a rel="license" href="http://creativecommons.org/licenses/by-nd/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/"		xmlns:dc="http://purl.org/dc/elements/1.1/"		xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by-nd/2.0/" /></Work>	<License rdf:about="http://creativecommons.org/licenses/by-nd/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />	</License>	</rdf:RDF>	-->EOT;//Creative Commons//Attribution Share Alike// (by-sa)$content['by-sa'] = <<<EOT	<!-- Creative Commons License -->	 <a rel="license" href="http://creativecommons.org/licenses/by-sa/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/"		xmlns:dc="http://purl.org/dc/elements/1.1/"		xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by-sa/2.0/" /></Work>	<License rdf:about="http://creativecommons.org/licenses/by-sa/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />		<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />		<requires rdf:resource="http://web.resource.org/cc/ShareAlike" />	</License>	</rdf:RDF>	-->EOT;//Creative Commons//Attribution //(by)$content['by'] = <<<EOT	<!-- Creative Commons License -->	<a rel="license" href="http://creativecommons.org/licenses/by/2.0/">Creative Commons License</a>.	<!-- /Creative Commons License -->	<!--	<rdf:RDF xmlns="http://web.resource.org/cc/"		xmlns:dc="http://purl.org/dc/elements/1.1/"		xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">	<Work rdf:about=""><license rdf:resource="http://creativecommons.org/licenses/by/2.0/" /></Work>	<License rdf:about="http://creativecommons.org/licenses/by/2.0/">		<permits rdf:resource="http://web.resource.org/cc/Reproduction" />		<permits rdf:resource="http://web.resource.org/cc/Distribution" />		<requires rdf:resource="http://web.resource.org/cc/Notice" />		<requires rdf:resource="http://web.resource.org/cc/Attribution" />		<permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />	</License>	</rdf:RDF>	-->EOT;	$temp = null;	$temp = $content[$license];	if( empty($temp) ){		trigger_error('Undefined license: '.$license);		return '';	}	return 'Except where expressly noted, this work is licensed by a '.$temp;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?