| 1 |
<?php |
<?php |
| 2 |
// $Id: event.module,v 1.348.2.18 2008/12/01 15:49:30 killes Exp $ |
// $Id: event.module,v 1.348.2.19 2009/03/15 18:13:08 killes Exp $ |
| 3 |
|
|
| 4 |
define('EVENT_API', '5.2'); |
define('EVENT_API', '5.2'); |
| 5 |
define('EVENT_PATH', drupal_get_path('module', 'event')); |
define('EVENT_PATH', drupal_get_path('module', 'event')); |
| 783 |
*/ |
*/ |
| 784 |
function event_calendar_ical($date, $duration, $types = NULL, $terms = NULL, $title = NULL, $rewrite_parameter = array()) { |
function event_calendar_ical($date, $duration, $types = NULL, $terms = NULL, $title = NULL, $rewrite_parameter = array()) { |
| 785 |
global $base_url, $locale; |
global $base_url, $locale; |
| 786 |
|
include_once(EVENT_PATH .'/ical.inc'); |
| 787 |
|
|
| 788 |
$end_date = event_date_later($date, $duration); |
$end_date = event_date_later($date, $duration); |
| 789 |
|
|