| 1 |
<?php |
| 2 |
|
| 3 |
namespace BitCode\BitForm\Admin\Form\InitJs; |
| 4 |
|
| 5 |
class Turnstile |
| 6 |
{ |
| 7 |
public static function init() |
| 8 |
{ |
| 9 |
return <<<TURNSTILE_INIT_JS |
| 10 |
const src = 'https://challenges.cloudflare.com/turnstile/v0/api.js'; |
| 11 |
const attrs = { |
| 12 |
async: true, |
| 13 |
defer: true, |
| 14 |
}; |
| 15 |
const id = 'bit_turnstile_script-' +contentId; |
| 16 |
|
| 17 |
scriptLoader(src, '', attrs, id); |
| 18 |
TURNSTILE_INIT_JS; |
| 19 |
} |
| 20 |
} |
| 21 |
|