mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-11-05 22:53:12 +01:00
22 lines
410 B
PHP
22 lines
410 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OxidProfessionalServices\Captcha\Application\Controller;
|
|
|
|
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
|
|
|
|
class NewsletterController extends NewsletterController_parent
|
|
{
|
|
use Captcha;
|
|
|
|
public function send()
|
|
{
|
|
if (!$this->getCaptcha()->passCaptcha()) {
|
|
return false;
|
|
}
|
|
|
|
return parent::send();
|
|
}
|
|
}
|