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_custom_field_validation_{$custom} | |
* | |
* Type: action | |
* | |
* Description: Apply custom validation for the field. | |
* | |
* @example |
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_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 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 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. | |
* |
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_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 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 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 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 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 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. | |
* |