config = $config; } /** * Return captcha config for frontend * @return array */ public function getCaptchaSettings() { return [ 'siteKey' => $this->config->getPublicKey(), 'size' => $this->config->getFrontendSize(), 'badge' => $this->config->getFrontendPosition(), 'theme' => $this->config->getFrontendTheme(), 'lang' => $this->config->getLanguageCode(), 'enabled' => [ 'login' => $this->config->isEnabledFrontendLogin(), 'create' => $this->config->isEnabledFrontendCreate(), 'forgot' => $this->config->isEnabledFrontendForgot(), 'contact' => $this->config->isEnabledFrontendContact(), ] ]; } }