You are here

public function AbstractFeed::setDateModified 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::setDateModified()

Set the feed modification date

Parameters

null|int|DateTime:

Return value

AbstractFeed

Throws

Exception\InvalidArgumentException

File

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

Class

AbstractFeed

Namespace

Zend\Feed\Writer

Code

public function setDateModified($date = null) {
  if ($date === null) {
    $date = new DateTime();
  }
  elseif (is_int($date)) {
    $date = new DateTime('@' . $date);
  }
  elseif (!$date instanceof DateTime) {
    throw new Exception\InvalidArgumentException('Invalid DateTime object or UNIX Timestamp' . ' passed as parameter');
  }
  $this->data['dateModified'] = $date;
  return $this;
}