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 Year
Calendar Views : YearMonthWeekDay
Next Year

January 2010
SMTWTFS
     12
3456789
10111213141516
17181920212223
24252627282930
31      
February 2010
SMTWTFS
 123456
78910111213
14151617181920
21222324252627
28      
March 2010
SMTWTFS
 123456
78910111213
14151617181920
21222324252627
28293031   
April 2010
SMTWTFS
    123
45678910
11121314151617
18192021222324
252627282930 
May 2010
SMTWTFS
      1
2345678
9101112131415
16171819202122
23242526272829
3031     
June 2010
SMTWTFS
  12345
6789101112
13141516171819
20212223242526
27282930   
July 2010
SMTWTFS
    123
45678910
11121314151617
18192021222324
25262728293031
August 2010
SMTWTFS
1234567
891011121314
15161718192021
22232425262728
293031    
September 2010
SMTWTFS
   1234
567891011
12131415161718
19202122232425
2627282930  
October 2010
SMTWTFS
     12
3456789
10111213141516
17181920212223
24252627282930
31      
November 2010
SMTWTFS
 123456
78910111213
14151617181920
21222324252627
282930    
December 2010
SMTWTFS
   1234
567891011
12131415161718
19202122232425
262728293031 


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