Events Calendar ~ Front-End Sample

You can easily integrate the Front-End to your web design page.
Please refer to the guidelines below.

 Search Event
By Title
By Venue



Browse Event Types
All Event Types
• Church
• Public Holidays
• Sports

Upcoming Event
No Upcoming Event

Printer Version 

Prev Day
Calendar Views : YearMonthWeekDay
Next Day

Tuesday - September 7, 2010
12:00 am 
1:00 am 
2:00 am 
3:00 am 
4:00 am 
5:00 am 
6:00 am 
7:00 am 
8:00 am 
9:00 am 
10:00 am 
11:00 am 
12:00 pm 
1:00 pm 
2:00 pm 
3:00 pm 
4:00 pm 
5:00 pm 
6:00 pm 
7:00 pm 
8:00 pm 
9:00 pm 
10:00 pm 
11:00 pm 


Front-End Integration Guidelines

You can easily integrate the front-end with your web design pages.
Before   After Integration


Integration Instructions
1. Using a text editor, open your web page file (.php file), and put the code below to the top of the file (line 1), to call the 'config.php' file. This will load all the necessary database connection and class declaration files.
 <?php include_once("document_path_of_oneadmin_folder/config.php"); include_once($path["docroot"]."common/css.php"); ?>
 * Note: Always insert the above code to the line 1, without any preceding character(s), not even a space.
2. To show the upcoming events, put the code below to any area of your web page file that you want it to display.
 <?php include($path["docroot"]."calendar/home.upcoming.php"); ?>
3. To display the event search, and event types, in the menu area of your calendar site, insert the following code.
 <?php include($path["docroot"]."calendar/home.menu.php"); ?>
4. In the body content of your .php web page file, put the line below to show the calendar view.
 <?php include($path["docroot"]."calendar/home.calendar.php") ?>
5. For sample integration code, please refer to the source of this file. To do this, open it with your text editor.
** To find your 'document_path_of_oneadmin_folder', check the path['docroot'] value from the oneadmin/config.php file