-
Notifications
You must be signed in to change notification settings - Fork 4
/
rooms.php
executable file
·29 lines (27 loc) · 1.08 KB
/
rooms.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
* This file contains the rooms you want to pull in
*
* Copy the below paste to the bottom of the page to add a new room.
$rooms[] = array(
'name' => 'test', //Use - instead of spaces. This is case-sensitive.
'type' => 1, //1 = exchange room resource, 2 = planning center RSS
'logon_name' => '', //for exchange room
'pass' => '', //for exchange room
'url' => '', //planning center/google calendar
'group' => '', //first floor, building-first-floor, etc.
'rpi' => array ('test-sign-1','test-sign-2',), //place your hostnames here.
'bldg' => '', //do not leave emtpy
);
*/
$rooms = array();
$rooms[] = array(
'name' => 'test', //Use - instead of spaces. This is case-sensitive.
'type' => 1, //1 = exchange room resource, 2 = planning center RSS, 3 = google calendar
'logon_name' => '', //for exchange room
'pass' => '', //for exchange room
'url' => '', //planning center/google calendar
'group' => '', //first floor, building-first-floor, etc.
'rpi' => array ('test-sign-1','test-sign-2',), //place your hostnames here.
'bldg' => '', //do not leave emtpy
);