mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-11-05 14:43:14 +01:00
31 lines
587 B
PHP
31 lines
587 B
PHP
|
<?php
|
||
|
/**
|
||
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Article detailed information widget.
|
||
|
*/
|
||
|
class oeCaptchaWArticleDetails extends oeCaptchaWArticleDetails_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;
|
||
|
}
|
||
|
}
|