'logged_in', 'object_type' => 'User', 'user_id' => $user->ID, 'object_id' => $user->ID, 'object_name' => $user->user_nicename, ) ); } public function hooks_user_register( $user_id ) { $user = get_user_by( 'id', $user_id ); aal_insert_log( array( 'action' => 'created', 'object_type' => 'User', 'object_id' => $user->ID, 'object_name' => $user->user_nicename, ) ); } public function hooks_delete_user( $user_id ) { $user = get_user_by( 'id', $user_id ); aal_insert_log( array( 'action' => 'deleted', 'object_type' => 'User', 'object_id' => $user->ID, 'object_name' => $user->user_nicename, ) ); } public function hooks_wp_logout() { $user = wp_get_current_user(); aal_insert_log( array( 'action' => 'logged_out', 'object_type' => 'User', 'user_id' => $user->ID, 'object_id' => $user->ID, 'object_name' => $user->user_nicename, ) ); } public function hooks_profile_update( $user_id ) { $user = get_user_by( 'id', $user_id ); aal_insert_log( array( 'action' => 'updated', 'object_type' => 'User', 'object_id' => $user->ID, 'object_name' => $user->user_nicename, ) ); } public function hooks_wrong_password( $username ) { aal_insert_log( array( 'action' => 'wrong_password', 'object_type' => 'User', 'user_id' => 0, 'object_id' => 0, 'object_name' => $username, ) ); } public function __construct() { add_action( 'wp_login', array( &$this, 'hooks_wp_login' ), 10, 2 ); add_action( 'wp_logout', array( &$this, 'hooks_wp_logout' ) ); add_action( 'delete_user', array( &$this, 'hooks_delete_user' ) ); add_action( 'user_register', array( &$this, 'hooks_user_register' ) ); add_action( 'profile_update', array( &$this, 'hooks_profile_update' ) ); add_filter( 'wp_login_failed', array( &$this, 'hooks_wrong_password' ) ); parent::__construct(); } }