summaryrefslogtreecommitdiff
path: root/includes/ical/src/EventsList.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/ical/src/EventsList.php')
-rw-r--r--includes/ical/src/EventsList.php54
1 files changed, 0 insertions, 54 deletions
diff --git a/includes/ical/src/EventsList.php b/includes/ical/src/EventsList.php
deleted file mode 100644
index 3325368..0000000
--- a/includes/ical/src/EventsList.php
+++ /dev/null
@@ -1,54 +0,0 @@
-<?php
-
-namespace om;
-
-/**
- * Copyright (c) 2004-2022 Roman Ožana (https://ozana.cz)
- *
- * @license BSD-3-Clause
- * @author Roman Ožana <roman@ozana.cz>
- */
-class EventsList extends \ArrayObject {
-
- /**
- * Return array of Events
- *
- * @return array
- */
- public function getArrayCopy(): array {
- return array_values(parent::getArrayCopy());
- }
-
- /**
- * Return sorted EventList (the newest dates are first)
- *
- * @return $this
- */
- public function sorted(): EventsList {
- $this->uasort(static function ($a, $b): int {
- if ($a['DTSTART'] === $b['DTSTART']) {
- return 0;
- }
- return ($a['DTSTART'] < $b['DTSTART']) ? -1 : 1;
- });
-
- return $this;
- }
-
- /**
- * Return reversed sorted EventList (the oldest dates are first)
- *
- * @return $this
- */
- public function reversed(): EventsList {
- $this->uasort(static function ($a, $b): int {
- if ($a['DTSTART'] === $b['DTSTART']) {
- return 0;
- }
- return ($a['DTSTART'] > $b['DTSTART']) ? -1 : 1;
- });
-
- return $this;
- }
-
-} \ No newline at end of file