8
0
Mirror von https://git.d3data.de/3rdParty/captcha-module.git synchronisiert 2024-08-21 15:21:45 +02:00
captcha-module/Application/Controller/DetailsController.php
2023-07-18 14:59:11 +00:00

24 Zeilen
449 B
PHP

<?php
declare(strict_types=1);
namespace OxidProfessionalServices\Captcha\Application\Controller;
use OxidProfessionalServices\Captcha\Application\Shared\Captcha;
class DetailsController extends DetailsController_parent
{
use Captcha;
public function addme()
{
if (!$this->getCaptcha()->passCaptcha(false)) {
$this->_iPriceAlarmStatus = 2;
return;
}
return parent::addme();
}
}