options.js
15 lines
| 1 | const { __ } = wp.i18n; |
| 2 | |
| 3 | const { |
| 4 | Tools, |
| 5 | getCaptchaProviders, |
| 6 | } = JetFBActions; |
| 7 | |
| 8 | const { globalTab } = JetFBActions; |
| 9 | const currentTab = globalTab( { slug: 'captcha-tab' } ); |
| 10 | const captchaItems = Tools.withPlaceholder( |
| 11 | getCaptchaProviders(), |
| 12 | __( 'Without protection', 'jet-form-builder' ), |
| 13 | ); |
| 14 | |
| 15 | export { captchaItems, currentTab }; |