This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_user_edit_profile | |
* | |
* Type: action | |
* | |
* Description: Fires on the profile form successful submit. | |
* Used in the core to update member's profile data. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_reset_password_process_hook | |
* | |
* Type: action | |
* | |
* Description: Fires on reset password form submit after successful validation. | |
* Used in the core to process a reset password request. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_reset_password_errors_hook | |
* | |
* Type: action | |
* | |
* Description: Fires on reset password form submit. | |
* Used in the core to process reset password validation. | |
* May be used to extend reset password validation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_change_password_process_hook | |
* | |
* Type: action | |
* | |
* Description: Fires on change password form submit after successful validation. | |
* Used in the core to process a change password request. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_change_password_errors_hook | |
* | |
* Type: action | |
* | |
* Description: Fires on change password form submit. | |
* Used in the core to process changing password validation. | |
* May be used to extend changing password validation. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_logout_after_user_welcome | |
* | |
* Type: action | |
* | |
* Description: Fires in the logout template. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/templates/logout.php#L37 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_user_login_extra_hook | |
* | |
* Type: action | |
* | |
* Description: Fires after the Login Form successful submit. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/um-actions-login.php#L325 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_on_login_before_redirect | |
* | |
* Type: action | |
* | |
* Description: Fires after successful login and before user is redirected. | |
* Used in the core to store the last login timestamp. | |
* May be used to customize cookies before login redirect or log logins. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_user_login | |
* | |
* Type: action | |
* | |
* Description: Fires after the Login Form successful submit. | |
* Used in the core for login and redirect after the Login Form validation. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Hook: um_submit_form_{$mode} | |
* | |
* Type: action | |
* | |
* Description: Fires on the form submit. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-form.php#L589 |