public function BotchaRecipe::__construct in BOTCHA Spam Prevention 7.3
Same name and namespace in other branches
- 6.2 controller/botcha_recipe.controller.inc \BotchaRecipe::__construct()
- 6.3 controller/recipe/botcha.recipe.controller.inc \BotchaRecipe::__construct()
- 7.2 controller/botcha_recipe.controller.inc \BotchaRecipe::__construct()
Magic method __construct.
File
- controller/
recipe/ botcha.recipe.controller.inc, line 172 - Controller layer of the BotchaRecipe objects.
Class
- BotchaRecipe
- Abstract class to describe recipe data structure.
Code
public function __construct($id) {
$this->id = $id;
// Get human-readable description about this recipe
// to clarify its work process.
$this
->getInfo();
}