public function Atom::getDateModified in Zircon Profile 8
Same name in this branch
- 8 vendor/zendframework/zend-feed/src/Reader/Entry/Atom.php \Zend\Feed\Reader\Entry\Atom::getDateModified()
- 8 vendor/zendframework/zend-feed/src/Reader/Feed/Atom.php \Zend\Feed\Reader\Feed\Atom::getDateModified()
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/Reader/Entry/Atom.php \Zend\Feed\Reader\Entry\Atom::getDateModified()
Get the entry modification date
Return value
string
Overrides EntryInterface::getDateModified
File
- vendor/
zendframework/ zend-feed/ src/ Reader/ Entry/ Atom.php, line 127
Class
Namespace
Zend\Feed\Reader\EntryCode
public function getDateModified() {
if (array_key_exists('datemodified', $this->data)) {
return $this->data['datemodified'];
}
$dateModified = $this
->getExtension('Atom')
->getDateModified();
$this->data['datemodified'] = $dateModified;
return $this->data['datemodified'];
}