Changeset 6464
- Timestamp:
- 12/11/07 20:04:03 (1 year ago)
- Files:
-
- doc/trunk/book/06-Inside-the-Controller-Layer.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/trunk/book/06-Inside-the-Controller-Layer.txt
r6117 r6464 182 182 class indexAction extends sfAction 183 183 { 184 public function execute( )184 public function execute($request) 185 185 { 186 186 ... … … 193 193 class listAction extends sfAction 194 194 { 195 public function execute( )195 public function execute($request) 196 196 { 197 197 ... … … 406 406 } 407 407 408 public function executeIndex( )408 public function executeIndex($request) 409 409 { 410 410 ... 411 411 } 412 412 413 public function executeList( )413 public function executeList($request) 414 414 { 415 415 ...