You are here

public function Entry::getCopyright in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/zendframework/zend-feed/src/Writer/Entry.php \Zend\Feed\Writer\Entry::getCopyright()

Get the entry copyright information

Return value

string

File

vendor/zendframework/zend-feed/src/Writer/Entry.php, line 391

Class

Entry

Namespace

Zend\Feed\Writer

Code

public function getCopyright() {
  if (!array_key_exists('copyright', $this->data)) {
    return;
  }
  return $this->data['copyright'];
}