You are here

public function AbstractFeed::getDateCreated in Zircon Profile 8

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

Get the feed creation date

Return value

string|null

File

vendor/zendframework/zend-feed/src/Writer/AbstractFeed.php, line 568

Class

AbstractFeed

Namespace

Zend\Feed\Writer

Code

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