| 1 |
<?php |
<?php |
| 2 |
// $Id: creativecommons.class.php,v 1.3.4.41 2009/09/05 22:16:10 turadg Exp $ |
// $Id: creativecommons.class.php,v 1.3.4.42 2009/10/13 19:58:10 balleyne Exp $ |
| 3 |
|
|
| 4 |
/** |
/** |
| 5 |
* @file |
* @file |
| 411 |
if ($site && (!$this->metadata['attributionName'] || !creativecommons_metadata_is_available('attributionName'))) { |
if ($site && (!$this->metadata['attributionName'] || !creativecommons_metadata_is_available('attributionName'))) { |
| 412 |
// CC0 |
// CC0 |
| 413 |
if ($this->type == 'zero') { |
if ($this->type == 'zero') { |
| 414 |
$html .= t('To the extent possible under law, all copyright and related or neighboring rights to this <span rel="dc:type" href="@dc:type-uri">@dc:type-name</span>, <a rel="cc:attributionURL" href="@cc:attributionURL" property="dc:title">@dc:title</a>, have been waived.', $args); |
$html .= t('To the extent possible under law, all copyright and related or neighboring rights to this <span rel="dc:type" href="@dc:type-uri">@dc:type-name</span>, <a rel="cc:attributionURL" href="@cc:attributionURL" property="dc:title">@dc:title</a>, have been waived, although certain works referenced herein may be separately licensed.', $args); |
| 415 |
} |
} |
| 416 |
// Rest |
// Rest |
| 417 |
else { |
else { |
| 418 |
$html .= t('This <span rel="dc:type" href="@dc:type-uri">@dc:type-name</span>, <a rel="cc:attributionURL" href="@cc:attributionURL" property="dc:title">@dc:title</a>, is licensed under a <a rel="license" href="@license-uri">@license-name license</a>.', $args); |
$html .= t('This <span rel="dc:type" href="@dc:type-uri">@dc:type-name</span>, <a rel="cc:attributionURL" href="@cc:attributionURL" property="dc:title">@dc:title</a>, is licensed under a <a rel="license" href="@license-uri">@license-name license</a>, although certain works referenced herein may be separately licensed.', $args); |
| 419 |
} |
} |
| 420 |
} |
} |
| 421 |
// Otherwise |
// Otherwise |