File "Copyright.php"
Full path: /home/kosmetik/public_html/wp-includes/SimplePie/Copyright.php
File
size: 569 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
class SimplePie_Copyright
{
var $url;
var $label;
public function __construct($url = null, $label = null)
{
$this->url = $url;
$this->label = $label;
}
public function __toString()
{
return md5(serialize($this));
}
public function get_url()
{
if ($this->url !== null) {
return $this->url;
}
return null;
}
public function get_attribution()
{
if ($this->label !== null) {
return $this->label;
}
return null;
}
}