data = $data; $this->config = $config; } /** * Get public reCaptcha key * @return string */ public function getPublicKey() { return $this->config->getPublicKey(); } /** * Get backend theme * @return string */ public function getTheme() { return $this->config->getBackendTheme(); } /** * Get backend size * @return string */ public function getSize() { return $this->config->getBackendSize(); } /** * Return true if can display reCaptcha * @return bool */ public function canDisplayCaptcha() { return $this->config->isEnabledBackend(); } }