function _event_format_url in Event 5.2
Format event date for use in URL
Parameters
$array Array as output from event_explode_date:
Return value
a string formatted as Y/m/d
14 calls to _event_format_url()
- event_block_upcoming in ./
event.module - Creates a block that contains upcoming events.
- event_calendar_month in ./
event.module - Displays a monthly event calendar.
- event_feed in ./
event.module - Url wrapper function for rss feeds
- event_ical in ./
event.module - Url wrapper function for ical feeds
- event_link in ./
event.module - Provides the links that should be displayed when viewing events.
File
- ./
event.module, line 2986
Code
function _event_format_url($array) {
return $array['year'] . '/' . $array['month'] . '/' . $array['day'];
}