Now I would also like to show the modified date in the date box. Currently I fetch the creation date with the following code:
- Code: Select all
for($i = 0; $i < count($this->parent->content); $i++) {
$title = $this->parent->content[$i]['title'];
$text = $this->parent->content[$i]['text'];
$date = $this->parent->content[$i]['date'];
However $date is the article creation date. Is there also a simple way to fetch the article modified date?
The file I am referring to is controller.php in mod_news_pro_gk5/tmpl/portal_modes/events_list
Thank you for your help!