miroir de
https://git.d3data.de/3rdParty/captcha-module.git
synchronisé 2024-10-31 20:34:38 +01:00
30 lignes
537 B
PHP
30 lignes
537 B
PHP
<?php
|
|
|
|
/**
|
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
|
*/
|
|
|
|
class oecaptchaaccountuser extends oecaptchaaccountuser_parent
|
|
{
|
|
/**
|
|
* Class handling CAPTCHA image.
|
|
*
|
|
* @var object
|
|
*/
|
|
protected $captcha = null;
|
|
|
|
/**
|
|
* Template variable getter. Returns object of handling CAPTCHA image
|
|
*
|
|
* @return object
|
|
*/
|
|
public function getCaptcha()
|
|
{
|
|
if ( $this->captcha === null ) {
|
|
$this->captcha = oxNew( 'oeCaptcha' );
|
|
}
|
|
|
|
return $this->captcha;
|
|
}
|
|
}
|