aboutsummaryrefslogtreecommitdiff
path: root/lib/calendar
diff options
context:
space:
mode:
authorPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
committerPhilipp Schüttlöffel <schuettloeffel@zqs.uni-hannover.de>2024-09-24 10:53:31 +0200
commit4459dd7917f4d1c34f40bb68f0e991e9c3d53e4c (patch)
tree5c07151ae61276d334e88f6309c30d439a85c12e /lib/calendar
parentda0022e5c1abbf9825ae76debaabdff7e8623bb4 (diff)
parent97a188592c679890a25c37ab78463add76a52ff7 (diff)
Merge branch 'main' into issue-3911issue-3911
Diffstat (limited to 'lib/calendar')
-rw-r--r--lib/calendar/CalendarColumn.php (renamed from lib/calendar/CalendarColumn.class.php)2
-rw-r--r--lib/calendar/CalendarView.php (renamed from lib/calendar/CalendarView.class.php)4
-rw-r--r--lib/calendar/CalendarWeekView.php (renamed from lib/calendar/CalendarWeekView.class.php)2
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/calendar/CalendarColumn.class.php b/lib/calendar/CalendarColumn.php
index cc3abea..78a3809 100644
--- a/lib/calendar/CalendarColumn.class.php
+++ b/lib/calendar/CalendarColumn.php
@@ -1,7 +1,7 @@
<?php
# Lifter010: TODO
/**
- * CalendarColumn.class.php - a column for a CalendarView
+ * CalendarColumn.php - a column for a CalendarView
*
* This class represents an entry-column like "monday" in the calendar
*
diff --git a/lib/calendar/CalendarView.class.php b/lib/calendar/CalendarView.php
index fc69127..9d9ebc2 100644
--- a/lib/calendar/CalendarView.class.php
+++ b/lib/calendar/CalendarView.php
@@ -2,7 +2,7 @@
# Lifter010: TODO
/**
- * CalendarView.class.php - generates a calendar
+ * CalendarView.php - generates a calendar
*
* This class takes and checks all necessary parameters to display a calendar/schedule/time-table.
*
@@ -214,7 +214,7 @@ class CalendarView
'whole_height' => $this->getOverallHeight(),
'entry_height' => $this->getHeight()
];
- $factory = new Flexi_TemplateFactory(dirname(__file__).'/../../app/views');
+ $factory = new Flexi\Factory(dirname(__file__).'/../../app/views');
PageLayout::addStyle($factory->render('calendar/schedule/stylesheet', $style_parameters));
$template = $GLOBALS['template_factory']->open("calendar/calendar_view.php");
diff --git a/lib/calendar/CalendarWeekView.class.php b/lib/calendar/CalendarWeekView.php
index c1e0f24..1d14ca21 100644
--- a/lib/calendar/CalendarWeekView.class.php
+++ b/lib/calendar/CalendarWeekView.php
@@ -2,7 +2,7 @@
# Lifter010: TODO
/**
- * CalendarWeekView.class.php - a specialized calendar view for displaying weeks
+ * CalendarWeekView.php - a specialized calendar view for displaying weeks
*
* This class takes and checks all necessary parameters to display a calendar/schedule/time-table.
*