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 submit. | |
* Used in the core to manage a form verification by the form type. | |
* |
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_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 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 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 |
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_{$key}_form_edit_field | |
* | |
* Type: filter | |
* | |
* Description: Change field HTML by field $key. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-fields.php#L3882 |
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_form_fields | |
* | |
* Type: filter | |
* | |
* Description: Extend form fields. | |
* Used in the core to prepare form fields. | |
* |
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_main_{$mode}_fields | |
* | |
* Type: action | |
* | |
* Description: Fires before rendering main form fields. | |
* | |
* @example https://github.com/ultimatemember/ultimatemember/blob/master/templates/login.php#L71 |