function event_term in Event 5.2
Same name and namespace in other branches
- 5 event.module \event_term()
Url wrapper function for static link to calendar by taxonomy terms.
Return value
redirect to the event page for calendar taxonomy term.
Related topics
1 string reference to 'event_term'
- event_menu in ./
event.module - Implementation of hook_menu()
File
- ./
event.module, line 475
Code
function event_term($filter = NULL, $view = NULL) {
drupal_goto('event/' . _event_format_url(_event_user_time()) . '/' . ($view ? $view : variable_get('event_overview', 'month')) . '/all/' . $filter);
}