function event_feed in Event 5
Same name and namespace in other branches
- 5.2 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 467
Code
function event_feed($types = 'all', $terms = 'all', $duration = NULL) {
drupal_goto('event/' . format_date(_event_user_time(), 'custom', 'Y/m/d') . '/feed/' . $types . '/' . $terms . '/' . $duration);
}