PluginProbe
Two Factor Authentication / 1.16.0
Two Factor Authentication v1.16.0
1.12.2 1.13.0 1.14.10 1.14.11 1.14.14 1.14.15 1.14.16 1.14.17 1.14.23 1.14.24 1.14.26 1.14.27 1.14.3 1.14.4 1.14.5 1.14.7 1.14.8 1.15.5 1.16.0 1.2.10 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 All 98 releases
two-factor-authentication / simba-tfa / includes / gutenberg-blocks.js

gutenberg-blocks.js in Two Factor Authentication 1.16.0, at simba-tfa/includes/gutenberg-blocks.js

19 lines 457 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 var registerBlockType = wp.blocks.registerBlockType;
2 var createElement = wp.element.createElement;
3 var serverSideRender = wp.serverSideRender;
4
5 registerBlockType('twofactor/user-settings', {
6 title: tfa_trans.block_title,
7 icon: 'lock',
8 category: 'widgets',
9 edit: function (props) {
10 return createElement(
11 'div',
12 null,
13 createElement(serverSideRender, {
14 block: 'twofactor/user-settings',
15 attributes: props.attributes,
16 } )
17 );
18 },
19 } );