function captcha_point_load in CAPTCHA 8
Loader for Captcha Point entity.
Parameters
string $id: Form id string.
Return value
\Drupal\Core\Entity\EntityInterface An instance of an captcha_point entity.
1 string reference to 'captcha_point_load'
- CaptchaPointForm::form in src/
Form/ CaptchaPointForm.php - Gets the actual form array to be built.
File
- ./
captcha.module, line 89 - This module enables basic CAPTCHA functionality.
Code
function captcha_point_load($id) {
return CaptchaPoint::load($id);
}