A callback triggered after (enabled) components loaded.

~~~
<?php
function my_component_init(){
ossn_register_callback('components', 'after:load', 'my_component_cb');
}
function my_component_cb($callback, $type, $params){
//$params['activated'] contains list of all enabled components that are loaded
}
~~~

Components after load