From ba083a01e6a117b3bbb7ae077d0b2bde95f4e7fc Mon Sep 17 00:00:00 2001 From: JJ Date: Fri, 23 Aug 2024 12:11:44 -0400 Subject: [PATCH] updated connectors.md for completeness --- connectors.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/connectors.md b/connectors.md index 9b128c884..989d38642 100644 --- a/connectors.md +++ b/connectors.md @@ -832,6 +832,31 @@ +## Connector: WP_Stream\Connector_Two_Factor + +### Actions + + - update_user_meta + - updated_user_meta + - added_user_meta + - two_factor_user_authenticated + - wp_login_failed + +### Class register() + +
+This is the register method for the Connector. Occasionally there are additional actions in here. + +```php + public function register() { + parent::register(); + + add_filter( 'wp_stream_log_data', array( $this, 'log_override' ) ); + } +``` +
+ + ## Connector: WP_Stream\Connector_User_Switching ### Actions