event

Event vs Date + Calendar

CCK and Views modules have taken the Drupal community by storm. The ability to rapidly create a CCK content type and Views views of that content type has given power to the user in ways we are still comprehending. The ability to export these new CCK content types and Views views has given the community the ability to replicate features across sites with out replicating all that clicking. Even as a programmer who has created modules before, I find the easy and logic of these modules irresistible.

Many CCK field types have immerged and the Date field type has brought with it the Calendar module. The combination of the Date field and the Calendar module in the presence on the CCK and Views modules could be substituted for the Event module.

Event.module has unwanted icalendar(webcal) links

Symptom: Event.module has icalendar(webcal) links that are unwanted.
solution: If using PHPtemplate engine - In template.php add
'. l(''.t('Add to iCalendar').'', $path, array('title' => t('Add this calendar to your iCalendar')), NULL, NULL, TRUE, TRUE) .'';
// return preg_replace("|http://|","webcal://", $ical_link);
}
?>
Change 'mytheme' to the name of your theme.

Syndicate content