Changeset 3671
- Timestamp:
- 03/27/07 08:37:29 (2 years ago)
- Files:
-
- plugins/sfBBPlugin/CHANGELOG (modified) (1 diff)
- plugins/sfBBPlugin/README (modified) (1 diff)
- plugins/sfBBPlugin/package.xml (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfBBPlugin/CHANGELOG
r3668 r3671 1 1 == 0.0.2 == 2 Added sfGuardPlugin dependency in package.xml.2 Added prepended routing rules to plugin config. 3 3 4 4 == 0.0.1 == plugins/sfBBPlugin/README
r3667 r3671 50 50 }}} 51 51 52 Add the following rules to your `routing.yml`. 53 54 {{{ 55 # sfBBPlugin rules 56 sf_bb_index: 57 url: /sfBB/ 58 param: { module: sfBB, action: index } 59 60 sf_bb_viewforum: 61 url: /sfBB/viewforum/:id/:stripped_name 62 param: { module: sfBB, action: viewForum } 63 64 sf_bb_viewpost: 65 url: /sfBB/viewpost/:id 66 param: { module: sfBB, action: viewPost } 67 68 sf_bb_viewuser: 69 url: /sfBB/viewuser/:username 70 param: { module: sfBB, action: viewUser } 71 }}} 52 Routing rules are added automatically by the plugin's config file, so you don't need to modify your application's `routing.yml`. 72 53 73 54 Then, clear your cache. plugins/sfBBPlugin/package.xml
r3670 r3671 20 20 <active>yes</active> 21 21 </lead> 22 <date>2007-03-2 6</date>22 <date>2007-03-27</date> 23 23 <version> 24 24 <release>0.0.2</release>