Changeset 7457
- Timestamp:
- 02/11/08 08:11:29 (8 months ago)
- Files:
-
- branches/1.1/lib/routing/sfPatternRouting.class.php (modified) (2 diffs)
- branches/1.1/lib/routing/sfRouting.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.1/lib/routing/sfPatternRouting.class.php
r7426 r7457 48 48 49 49 /** 50 * Loads routing configuration.50 * @see sfRouting 51 51 */ 52 52 public function loadConfiguration() … … 56 56 include($config); 57 57 } 58 59 parent::loadConfiguration(); 58 60 } 59 61 branches/1.1/lib/routing/sfRouting.class.php
r6663 r7457 75 75 76 76 /** 77 * Loads routing configuration. 78 * 79 * This methods notifies a routing.load_configuration event. 80 */ 81 public function loadConfiguration() 82 { 83 $this->dispatcher->notify(new sfEvent($this, 'routing.load_configuration')); 84 } 85 86 /** 77 87 * Gets the internal URI for the current request. 78 88 *