Anhskohbo\NoCaptcha\NoCaptcha::display PHP 메소드

display() 공개 메소드

Render HTML captcha.
public display ( $attributes = [], $lang = null ) : string
리턴 string
    public function display($attributes = [], $lang = null)
    {
        $attributes['data-sitekey'] = $this->sitekey;
        $html = '<script src="' . $this->getJsLink($lang) . '" async defer></script>' . "\n";
        $html .= '<div class="g-recaptcha"' . $this->buildAttributes($attributes) . '></div>';
        return $html;
    }