miroir de
https://git.d3data.de/3rdParty/captcha-module.git
synchronisé 2024-11-09 16:43:11 +01:00
22 lignes
402 B
PHP
22 lignes
402 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace OxidProfessionalServices\Captcha\Application\Controller;
|
||
|
|
||
|
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
|
||
|
|
||
|
class InviteController extends InviteController_parent
|
||
|
{
|
||
|
use Captcha;
|
||
|
|
||
|
public function send()
|
||
|
{
|
||
|
if (!$this->getCaptcha()->passCaptcha()) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return parent::send();
|
||
|
}
|
||
|
}
|