Skip to content
Snippets Groups Projects
Commit 93432696 authored by Owen Bush's avatar Owen Bush Committed by Owen Bush
Browse files

Issue #3087235 by owenbush, Snehal Brahmbhatt, the_glitch, MrPaulDriver,...

Issue #3087235 by owenbush, Snehal Brahmbhatt, the_glitch, MrPaulDriver, pjudge: Order Events by date on events series page?
parent fb612ab6
No related branches found
No related tags found
No related merge requests found
...@@ -155,6 +155,15 @@ class EventInstanceDateFormatter extends EntityReferenceFormatterBase { ...@@ -155,6 +155,15 @@ class EventInstanceDateFormatter extends EntityReferenceFormatterBase {
$elements[$delta]['#cache']['tags'] = $entity->getCacheTags(); $elements[$delta]['#cache']['tags'] = $entity->getCacheTags();
} }
usort($elements, function($a, $b) {
$a_date = $a['#options']['entity']->date->start_date->getTimestamp();
$b_date = $b['#options']['entity']->date->start_date->getTimestamp();
if ($a_date == $b_date) {
return 0;
}
return ($a_date < $b_date) ? -1 : 1;
});
return $elements; return $elements;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment