Mirror von
https://git.d3data.de/3rdParty/captcha-module.git
synchronisiert 2025-04-21 21:31:38 +02:00
22 Zeilen
404 B
PHP
22 Zeilen
404 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OxidProfessionalServices\Captcha\Application\Controller;
|
|
|
|
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
|
|
|
|
class ContactController extends ContactController_parent
|
|
{
|
|
use Captcha;
|
|
|
|
public function send()
|
|
{
|
|
if (!$this->getCaptcha()->passCaptcha()) {
|
|
return false;
|
|
}
|
|
|
|
return parent::send();
|
|
}
|
|
}
|