"Calendar Publisher Pro", // URL starting with http:// to the installation folder. No trailing '/' (forward slash). "SITE_URL" => "http://yourdomain.com/calendarpro", // Footer information. Will appear at botton-right of monthly calendar in admin // interface only. Can be left blank. "SCRIPT_INFO" => "This is the footer information.", // Skin ( folder names under directory root/calendarpro/templates/ ) // If you wish to create your own skin, duplicate folder "default" and rename it. // Come with this package are "default" and "default2". "SKIN" => "default" ); // ** DATAFILE CONFIGURATION ** { // Please keep your data file(s) under directory root/calendarpro/data/flatfiles/ // Default data file format: [timestamp]~[event date]~[title]~[description]~[category]~[repeat] $flat_files=array( // Adding datafiles ("[DATAFILE NAME]","[TAG]") // Event tag: You may add a tag for each data file. This string will be shown on the // calendar preceeding the event titles. In normal use you might leave it blank. // DEFAULT and MAIN DATA FILE. array("datafile.txt",""), // This calendar script can read from multiple sub data files. This is useful if you have // multiple @1 AJAX Calendar Publisher PRO under different websites and under the same // server. You can create a server cronjob to copy other data files to the main // calendar and display events of other calendars on the main calendar. // Note that only the main data file is editable, the rest are read-only. // In normal cases you will not need to have sub-data files. But if you really // find it useful, do comment out the double slashes in front: // ** SUB-DATA FILES ** //array("datafile2.txt","SITE1") // read-only //array("datafile3.txt","SITE2"), // read-only //array("datafile4.txt","SITE3") // read-only ); } // ** CALENDAR CONFIGURATION ** { $calendar_months=1; // always set to 1 (designed as 1 month display) $calendar_columns_limit=1; // always set to 1 (designed as 1 month display) // Configure start-end year for month selection. $year_start=2009; $year_end=2016; // Tooltip for event text. $enable_tooltip = 0; // ** ICON CONFIGURATION ** // Category icons is located under root/calendarpro/data/icons. // If you enter "Archive" and use extension ".png" below, make sure you have // an image named "Archive.png". $category_list = array("Archive","Article","Book","Bus","Calendar","Car","Clock","Event","Group","Holiday","Home","Image","Info","Lock","Love","Mail","Meeting","Money","Note","Pencil","Personal","Question","Telephone","Tick","Warning"); $category_icon_extention = ".png"; // ** MODE CONFIGURATION ** // For mini calendar. Number of events to display under the mini calendar. $max_events_displayed = 10; // For mini calendar. If set to "true", the X number of upcoming events for the // CURRENT MONTH will always be shown (below the mini calendar) after switching // to a different month. *** HIGHLY RECOMMENDED ** // If set to "false", the X number of upcoming events of the SELECTED MONTH (based // on the current DAY) will be shown after month-switching. // It is recommended that you leave it to "true". We will improve on the "false" state // in the future. The current problem is upcoming events shown are based on the current // day of the selected month. For example, today is 20th Sep. If you switch to Oct, // the upcoming events will be the ones after 20th Oct. $show_current_month_events = true; } ?>