public function BotchaRecipe::isSpam in BOTCHA Spam Prevention 7.3
Same name and namespace in other branches
- 6.2 controller/botcha_recipe.controller.inc \BotchaRecipe::isSpam()
- 6.3 controller/recipe/botcha.recipe.controller.inc \BotchaRecipe::isSpam()
- 7.2 controller/botcha_recipe.controller.inc \BotchaRecipe::isSpam()
Spam check.
_state
Parameters
array $form:
4 calls to BotchaRecipe::isSpam()
- BotchaRecipeHoneypot::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeNoResubmit::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeObscureUrl::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeTimegate::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
4 methods override BotchaRecipe::isSpam()
- BotchaRecipeHoneypot::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeNoResubmit::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeObscureUrl::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
- BotchaRecipeTimegate::isSpam in controller/
recipe/ botcha.recipe.controller.inc - Spam check.
File
- controller/
recipe/ botcha.recipe.controller.inc, line 273 - Controller layer of the BotchaRecipe objects.
Class
- BotchaRecipe
- Abstract class to describe recipe data structure.
Code
public function isSpam($form, $form_state) {
$this
->prepare($form, $form_state);
return FALSE;
}