Browse Source

added event firing when bundle is started.

Taylor Otwell 13 years ago
parent
commit
b5f9f9bd9a
2 changed files with 3 additions and 0 deletions
  1. 2 0
      laravel/bundle.php
  2. 1 0
      laravel/core.php

+ 2 - 0
laravel/bundle.php

@@ -87,6 +87,8 @@ class Bundle {
 		// start script for reverse routing efficiency purposes.
 		static::routes($bundle);
 
+		Event::fire("started: {$bundle}");
+
 		static::$started[] = strtolower($bundle);
 	}
 

+ 1 - 0
laravel/core.php

@@ -17,6 +17,7 @@ define('MB_STRING', (int) function_exists('mb_get_info'));
  * These are typically classes that the auto-loader relies upon to
  * load classes, such as the array and configuration classes.
  */
+require path('sys').'event'.EXT;
 require path('sys').'bundle'.EXT;
 require path('sys').'config'.EXT;
 require path('sys').'helpers'.EXT;