Changeset 24293
- Timestamp:
- 11/23/09 22:23:48 (3 years ago)
- Files:
-
- branches/1.3/lib/routing/sfRoute.class.php (modified) (2 diffs)
- branches/1.4/lib/routing/sfRoute.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/lib/routing/sfRoute.class.php
r24152 r24293 75 75 76 76 /** 77 * Returns true if the form is bound to input values.78 * 79 * @return Boolean true if the form is bound to input values, false otherwise77 * Returns true if the route is bound to context and parameters. 78 * 79 * @return Boolean true if theroute is bound to context and parameters, false otherwise 80 80 */ 81 81 public function isBound() … … 315 315 316 316 /** 317 * Returns the route parameters. 318 * 319 * @return array The route parameters 320 */ 321 public function getParameters() 322 { 323 if (!$this->compiled) 324 { 325 $this->compile(); 326 } 327 328 return $this->parameters; 329 } 330 331 /** 317 332 * Returns the compiled pattern. 318 333 * branches/1.4/lib/routing/sfRoute.class.php
r24050 r24293 75 75 76 76 /** 77 * Returns true if the form is bound to input values.78 * 79 * @return Boolean true if the form is bound to input values, false otherwise77 * Returns true if the route is bound to context and parameters. 78 * 79 * @return Boolean true if theroute is bound to context and parameters, false otherwise 80 80 */ 81 81 public function isBound() … … 315 315 316 316 /** 317 * Returns the route parameters. 318 * 319 * @return array The route parameters 320 */ 321 public function getParameters() 322 { 323 if (!$this->compiled) 324 { 325 $this->compile(); 326 } 327 328 return $this->parameters; 329 } 330 331 /** 317 332 * Returns the compiled pattern. 318 333 *