This hook will change the bahavior of the account status (activated or not). Default behavior is not activated (user need to click activation email URL). Below example will make the new user automatically validated. Default is `false`

~~~
<?php
function my_component_init(){
ossn_add_hook('user', 'create:validated', 'my_component_hook');
}
function my_component_hook($hook, $type, $return, $params){
return true;
}
ossn_register_callback('ossn', 'init', 'my_component_init');
~~~

User created validated account