captcha-module/application/component/oeusercomponent.php

49 lines
933 B
PHP

<?php
/**
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
*/
/**
* Article detailed information widget.
*/
class oeUserComponent extends oeUserComponent_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;
}
public function createUser()
{
if (!$this->getCaptcha()->passCaptcha()) {
return false;
}
return parent::createUser();
}
public function changeuser_testvalues()
{
if (!$this->getCaptcha()->passCaptcha()) {
return false;
}
return parent::changeuser_testvalues();
}
}