I am writing a module that loops through $allcontent as $onecontent where $allcontent = ContentManager::GetAllContent(false);
How do I get the modified date of $onecontent?
Note: I only want the conent date NOT the template date!
how to get the modified date of content
Re: how to get the modified date of content
$onecontent->mModifiedDate should work
Re: how to get the modified date of content
also, what format is it in, because date('Y-m-d\TH:i:sO', $onecontent->mModifiedDate), produces 1969-12-31T18:33:25-0600, which aint right... how to I get this into iso format?