thastyle
Junior Member
Posts: 2
Registered: 12/7/2006
Location: netherlands
Member Is Offline
|
| posted on 12/8/2006 at 03:20 PM |
|
|
Display monthly events update
Yo found the topic about Display monthly events..
seems that all links are dead and i really really need this to work, anybody got it working??
Please email me @ webmaster [at] benhendriks [dot] com
Deeply apreciated!
|
|
|
chronister
Member
Posts: 23
Registered: 8/24/2006
Member Is Offline
|
| posted on 12/10/2006 at 05:11 PM |
|
|
// Add the following to cl_files/calendar.php
/*
function show_month
input parameters:
none
used parameters:
$a_template, $a_look
used methods:
show_calendar
action:
make and return to the browser formatted event list for selected month (used in Control panel)
*/
function show_month(){
$this->a_template['is_show_title'] = 1;
$this->a_look['td_width'] = 75;
$this->a_look['td_height'] = 65;
$this->a_look['def_align'] = 'left';
$this->a_look['def_valign'] = 'top';
$this->show_calendar();
}
// end calendar.php addition
// this is the code to display the month view
<?
error_reporting (E_ALL ^ E_NOTICE);
extract($HTTP_POST_VARS);
extract($HTTP_GET_VARS);
include 'cl_files/calendar.php';
$calendar->init('YOUR CALENDAR NAME HERE');
$calendar->is_month_view = true;
$calendar->show_month();
?>
hope this helps
Nate
|
|
|
thastyle
Junior Member
Posts: 2
Registered: 12/7/2006
Location: netherlands
Member Is Offline
|
| posted on 12/12/2006 at 04:02 AM |
|
|
thank u
Well the code u gave me was already in the new relase....
so that part works.... but it does not do what i want to achieve....
I guess we need a really good coder for this.......
i want to display all the up comming monthley events in the events list
all the events of december in a row
event 1 title of event description of event
event 2 title of event description of event
event 3 title of event description of event
so that people in a blink of an eye can see what is comming up....
is there a way to do this ???
PLEASE tried some myself but need someone who really knows what he is doing
CHEARS
Peter
|
|
|