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__blockedwords | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form validation. | |
| * Used in the core to validate username and email by blocked words. | |
| * |
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_logincheck | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the Login Form validation. | |
| * Used in the core to verify members by their 'account_status' before login. | |
| * |
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_error | |
| * | |
| * Type: filter | |
| * | |
| * Description: Change error text on the form submit. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-form.php#L289 |
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_login | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the Login Form submit validation. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/um-actions-form.php#L222 |
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__blockedemails | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form validation. | |
| * Used in the core to verify members by their Email before login. | |
| * |
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__blockedips | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form validation. | |
| * Used in the core to verify members by their IP before login. | |
| * |
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 submit. | |
| * Used in the core to manage a form verification by the form type. | |
| * |
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_data | |
| * | |
| * Type: filter | |
| * | |
| * Description: Change submitted data on form submit. | |
| * Used in the core to prepare role fields data and trim input string values. | |
| * |
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_post_form | |
| * | |
| * Type: filter | |
| * | |
| * Description: Change submitted data on form submit. | |
| * May be used to modify or save raw input data before the data sanitize. | |
| * |
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_before_submit_form_post | |
| * | |
| * Type: action | |
| * | |
| * Description: Fires on the form submit before validation. | |
| * | |
| * @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-form.php#L424 |