added event firing when bundle is started.
This commit is contained in:
parent
363632165c
commit
b5f9f9bd9a
|
@ -87,6 +87,8 @@ public static function start($bundle)
|
|||
// start script for reverse routing efficiency purposes.
|
||||
static::routes($bundle);
|
||||
|
||||
Event::fire("started: {$bundle}");
|
||||
|
||||
static::$started[] = strtolower($bundle);
|
||||
}
|
||||
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
* 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;
|
||||
|
|
Loading…
Reference in New Issue