function event_feed in Event 5.2
Same name and namespace in other branches
- 5 event.module \event_feed()
Url wrapper function for rss feeds
Return value
redirect to the event rss feed page at current day
Related topics
1 string reference to 'event_feed'
- event_menu in ./
event.module - Implementation of hook_menu()
File
- ./
event.module, line 485
Code
function event_feed($types = 'all', $terms = 'all', $duration = NULL) {
drupal_goto('event/' . _event_format_url(_event_user_time()) . '/feed/' . $types . '/' . $terms . '/' . $duration);
}