summaryrefslogtreecommitdiff
path: root/app/php/controls/EventList.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-06-07 15:17:49 +0200
committeremkael <emkael@tlen.pl>2016-06-10 11:46:41 +0200
commit823d71ced9b4947b1a5a5ade7245d521ed490061 (patch)
treea9a6c7cb0de74ff705e8320c284de423a698f5b5 /app/php/controls/EventList.php
parentdf401552aac363655ab8f056a6c910a7611954d6 (diff)
* renaming php directory
Diffstat (limited to 'app/php/controls/EventList.php')
-rw-r--r--app/php/controls/EventList.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/app/php/controls/EventList.php b/app/php/controls/EventList.php
deleted file mode 100644
index d40e000..0000000
--- a/app/php/controls/EventList.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-
-class EventList extends UrlBasedCalendarControl {
-
- private function _setDate($key, $date) {
- $datetime = new DateTime($date, new DateTimeZone('UTC'));
- if (!$datetime) {
- throw new TInvalidDataValueException(
- Prado::localize('Invalid date string: {date}',
- ['date' => $date])
- );
- }
- $this->setViewState($key, $datetime);
- }
-
- public function setDateFrom($date) {
- $this->_setDate('DateFrom', $date);
- }
-
- public function getDateFrom() {
- return $this->getViewState('DateFrom');
- }
-
- public function setDateTo($date) {
- $this->_setDate('DateTo', $date);
- }
-
- public function getDateTo() {
- return $this->getViewState('DateTo');
- }
-
- public function setHeaderText($text) {
- $this->setViewState('HeaderText', TPropertyValue::ensureString($text));
- }
-
- public function getHeaderText() {
- return $this->getViewState('HeaderText');
- }
-
- public function setReverse($value) {
- $this->setViewState('Reverse', TPropertyValue::ensureBoolean($value));
- }
-
- public function getReverse() {
- return $this->getViewState('Reverse');
- }
-
- public function getEvents() {
- return $this->getFacade()->getEventsForTimeframe(
- $this->getCalendar(),
- $this->getDateFrom() ?: new DateTime('0000-00-00'),
- $this->getDateTo() ?: new DateTime('9999-99-99'),
- $this->getReverse() ? 'DESC' : 'ASC'
- );
- }
-
-}
-
-?>