X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FMetadata.php;h=0b8014a7b4277f5ac6d14f5ebe497ee6a4b24cd2;hb=797e52dd0534ee102240cb78eb71fcce95a3153e;hp=9a4ddca9979ddf81969aefb62d6b3aabaa4fce95;hpb=ec493cc7508e4741e370cbcd10b59ba636c13113;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/Metadata.php b/includes/Metadata.php index 9a4ddca997..0b8014a7b4 100644 --- a/includes/Metadata.php +++ b/includes/Metadata.php @@ -82,10 +82,10 @@ abstract class RdfMetaData { print "\t\t{$value}\n"; } - protected function date($timestamp) { - return substr($timestamp, 0, 4) . '-' - . substr($timestamp, 4, 2) . '-' - . substr($timestamp, 6, 2); + protected function date( $timestamp ) { + return substr( $timestamp, 0, 4 ) . '-' + . substr( $timestamp, 4, 2 ) . '-' + . substr( $timestamp, 6, 2 ); } protected function pageOrString( $name, $page, $str ) { @@ -110,7 +110,7 @@ abstract class RdfMetaData { $this->url( $name, $title->getFullUrl() ); } - protected function url($name, $url) { + protected function url( $name, $url ) { $url = htmlspecialchars( $url ); print "\t\t\n"; } @@ -166,23 +166,23 @@ abstract class RdfMetaData { } protected function getKnownLicenses() { - $ccLicenses = array('by', 'by-nd', 'by-nd-nc', 'by-nc', - 'by-nc-sa', 'by-sa'); - $ccVersions = array('1.0', '2.0'); + $ccLicenses = array( 'by', 'by-nd', 'by-nd-nc', 'by-nc', + 'by-nc-sa', 'by-sa' ); + $ccVersions = array( '1.0', '2.0' ); $knownLicenses = array(); - foreach ($ccVersions as $version) { - foreach ($ccLicenses as $license) { - if( $version == '2.0' && substr( $license, 0, 2) != 'by' ) { + foreach ( $ccVersions as $version ) { + foreach ( $ccLicenses as $license ) { + if( $version == '2.0' && substr( $license, 0, 2 ) != 'by' ) { # 2.0 dropped the non-attribs licenses continue; } $lurl = "http://creativecommons.org/licenses/{$license}/{$version}/"; - $knownLicenses[$lurl] = explode('-', $license); + $knownLicenses[$lurl] = explode( '-', $license ); $knownLicenses[$lurl][] = 're'; $knownLicenses[$lurl][] = 'di'; $knownLicenses[$lurl][] = 'no'; - if (!in_array('nd', $knownLicenses[$lurl])) { + if ( !in_array( 'nd', $knownLicenses[$lurl] ) ) { $knownLicenses[$lurl][] = 'de'; } } @@ -191,11 +191,11 @@ abstract class RdfMetaData { /* Handle the GPL and LGPL, too. */ $knownLicenses['http://creativecommons.org/licenses/GPL/2.0/'] = - array('de', 're', 'di', 'no', 'sa', 'sc'); + array( 'de', 're', 'di', 'no', 'sa', 'sc' ); $knownLicenses['http://creativecommons.org/licenses/LGPL/2.1/'] = - array('de', 're', 'di', 'no', 'sa', 'sc'); + array( 'de', 're', 'di', 'no', 'sa', 'sc' ); $knownLicenses['http://www.gnu.org/copyleft/fdl.html'] = - array('de', 're', 'di', 'no', 'sa', 'sc'); + array( 'de', 're', 'di', 'no', 'sa', 'sc' ); return $knownLicenses; }