I really need your help with a feature I have never worked with so far.
I have a custom-post-type named wr_event
. And I created this custom WP_Query
to retrieve all posts for this post-type that are “younger” than yesterday. Fairly simple and this works like a charm.
function event_list_iCal() {
$yesterday = time() - 24*60*60;
$args = array(
'post_type' => 'wr_event',
'posts_per_page' => -1, // show all posts
'meta_key' => 'event_date',
'orderby' => 'meta_value_num',
'order' => 'ASC',
'meta_value' => $yesterday,
'meta_compare' => '>',
);
$loop = new WP_Query( $args );
$ical = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//hacksw/handcal//NONSGML v1.0//EN";
$posts = get_posts( $args );
foreach( $posts as $post ) : setup_postdata($post);
$ical .= "BEGIN:VEVENT
UID:" . md5(uniqid(mt_rand(), true)) . "mysite.com
DTSTAMP:" . gmdate('Ymd').'T'. gmdate('His') . "Z
DTSTART:".unixToiCal(get_event_date($post), get_event_time($post))."00Z
DTEND:".unixToiCal(get_event_end_date($post), get_event_end_time($post))."00Z
SUMMARY:".get_the_title($post->ID)."
DESCRIPTION:".get_the_content($post->ID)."
END:VEVENT";
endforeach;
$ical .= "END:VCALENDAR";
header('Content-type: text/calendar; charset=utf-8');
header('Content-Disposition: inline; filename=calendar.ics');
echo $ical;
exit;
}
function unixToiCal($uStamp = 0, $tzone = 0.0) {
$uStampUTC = $uStamp + ($tzone * 3600);
$stamp = date("Ymd\THis\Z", $uStampUTC);
return $stamp;
}
I use this function call in my index.php
to list all “upcoming” events.
Creating a .ics file.
There is another feature that I’d like to have. I want to create a .ics (iCal) file on the fly with all “upcoming” events. So I guess this shoudln’t be to hard as I already have the query.
Any ideas on that matter? I would really appreciate some help with this.
Update:
I have two more problems with the .ics Calendar file.
I have a function get_event_date($timestamp)
that returns a timestamp of the event-date. However there is a (for me) rather complicated part in it.
There are two variables $date[0]
and $time[0]
that hold different formats.
The $date[0]
holds a timestamp 1347667200
and the $time[0]
holds a string e.g. 14:00
. I now need to calculate the final timestamp of the “date” plus “time” to pass it along to the unixToical()
function.
if ( $timestamp ) {
if ( !empty( $time[0]) ) {
$time = explode(':', $time[0]);
$hours = $time[0];
$minutes = $time[1];
} else {
//$hours = "00";
//$minutes = "00";
}
$seconds = "00";
return $date[0] + ($hours * 60) + $minutes;
exit;
}
The part where I set $hours
to “00” is for when there is no time set. In that case I want to time in the final .ics to be “00:00” (midnight).
Any idea what I’m doing wrong here. I guess this might be the problem why when importing the calendar file to iCal only the first event is imported. (When opening the file with a text-editor all events are in there)