changes the layout of the Stundenplan Events

This commit is contained in:
SimonGschnell
2024-06-24 13:50:13 +02:00
parent 008847e490
commit 63f089dc27
6 changed files with 21 additions and 10 deletions
@@ -48,10 +48,10 @@ class Stundenplan_model extends DB_Model
*
* @return stdClass
*/
public function groupedRoomPlanning($ort_kurzbz,$start_date,$end_date){
public function groupedCalendarEvents($ort_kurzbz,$start_date,$end_date){
$gruppierteRaumVerplannung= $this->execReadOnlyQuery("
$gruppierteEvents= $this->execReadOnlyQuery("
SELECT
'reservierung' as type,
@@ -130,7 +130,7 @@ class Stundenplan_model extends DB_Model
ORDER BY datum, stunde
", [$ort_kurzbz, $start_date, $end_date, $ort_kurzbz, $start_date, $end_date]);
return $gruppierteRaumVerplannung;
return $gruppierteEvents;
}
/**