| 1 |
A URL interface to events. Generates filtered, sorted, themed list of events from URL parameters. Provides a user interface for site admins to help them build and test URLs.
|
| 2 |
|
| 3 |
Depends on eventfinder module
|
| 4 |
|
| 5 |
URLs have the following format:
|
| 6 |
/eventfinder/filter/tid?start=date&finish=date&sort=direction
|
| 7 |
|
| 8 |
Where:
|
| 9 |
tid is the taxonomy id of the events you want to list; multiple tids (tidA OR tidB) can be separated by + symbols
|
| 10 |
date is a date in strtotime date format; underscores can be used instead of spaces
|
| 11 |
direction is either asc or desc (for ascending or decending order) of event_start
|
| 12 |
|
| 13 |
Defaults:
|
| 14 |
start: defaults to two hours prior to now
|
| 15 |
finish: defaults to no limit
|
| 16 |
direction: defaults to ascending (i.e. chronological order)
|
| 17 |
|
| 18 |
Examples:
|
| 19 |
/eventfinder/filter/582?finish=+1_year&sort=desc
|
| 20 |
Show all events with tid 582 for the next year in descending order
|
| 21 |
/eventfinder/filter/337+582?start=20050801&finish=20050831
|
| 22 |
Show all events with tid 337 OR tid 582 for August 2005
|
| 23 |
|
| 24 |
If you have any questions please contact me using http://drupal.org/user/19668/contact
|
| 25 |
- Grugnog
|