This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
This file contains hidden or 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_custom_field_validation_{$custom} | |
| * | |
| * Type: action | |
| * | |
| * Description: Apply custom validation for the field. | |
| * | |
| * @example |
This file contains hidden or 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_add_error_on_form_submit_validation | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form validation before adding an error message. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/um-actions-form.php#L575 |
This file contains hidden or 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_get_custom_field_array | |
| * | |
| * Type: filter | |
| * | |
| * Description: Extend custom field data on submit form error. | |
| * Used in the core to validate fields with conditional logic. | |
| * |
This file contains hidden or 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_errors_hook_ | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form validation. | |
| * Used in the core to process form errors. | |
| * |