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
/** | |
* Performs spam check and returns result to Gravity Forms. | |
* | |
* @param bool $is_spam Indicates if the entry is to be marked as spam. | |
* @param array $form The form currently being processed. | |
* @param array $entry The entry being evaluated. | |
* | |
* @return bool | |
*/ | |
function your_gform_entry_is_spam_callback( $is_spam, $form, $entry ) { |
OlderNewer