Basic changes made for smarty and base code

This commit is contained in:
Gabriel Peleskei
2023-07-18 14:59:11 +00:00
parent 2b8493d37a
commit bd415ccb3e
44 changed files with 760 additions and 768 deletions

View File

@ -0,0 +1,21 @@
<?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();
}
}