diff options
author | msquare <msquare@notrademark.de> | 2016-10-05 18:56:50 +0200 |
---|---|---|
committer | msquare <msquare@notrademark.de> | 2016-10-05 18:56:50 +0200 |
commit | 6fff6a6c1a5a4ae6c6977c3aeb4ac532ba09a395 (patch) | |
tree | b32209aa2907e34a7e52d41b6754382fa23d6151 /public/index.php | |
parent | 27c9650dc4064ec5b40c5041d8291a7ce0e5305e (diff) |
begin room view and shifts filter renderer
Diffstat (limited to 'public/index.php')
-rw-r--r-- | public/index.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/index.php b/public/index.php index 996c2b77..e1af1000 100644 --- a/public/index.php +++ b/public/index.php @@ -9,6 +9,7 @@ $free_pages = [ 'credits', 'ical', 'login', + 'rooms', 'shifts', 'shifts_json_export', 'shifts_json_export_all', @@ -68,6 +69,8 @@ if (isset($_REQUEST['p']) && preg_match("/^[a-z0-9_]*$/i", $_REQUEST['p']) && (i list($title, $content) = shifttypes_controller(); } elseif ($page == "admin_event_config") { list($title, $content) = event_config_edit_controller(); + } elseif ($page == "rooms") { + list($title, $content) = rooms_controller(); } elseif ($page == "news") { $title = news_title(); $content = user_news(); |