| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/studiokobylisy_cz/www/wp-content/plugins/wp-bootstrap-blocks/src/row/ |
Upload File : |
/**
* BLOCK: wp-bootstrap-blocks/row
*/
// WordPress dependencies
import { registerBlockType } from '@wordpress/blocks';
import { __ } from '@wordpress/i18n';
import * as BlockEditor from '@wordpress/block-editor';
import * as Editor from '@wordpress/editor';
import edit from './edit';
import transforms from './transforms';
import { columns } from '../icons';
import './editor.scss';
import './style.scss';
const { InnerBlocks } = BlockEditor || Editor; // Fallback to deprecated '@wordpress/editor' for backwards compatibility
registerBlockType( 'wp-bootstrap-blocks/row', {
// Block name. Block names must be string that contains a namespace prefix. Example: my-plugin/my-custom-block.
title: __( 'Bootstrap Row', 'wp-bootstrap-blocks' ), // Block title.
icon: columns, // Block icon from Dashicons → https://developer.wordpress.org/resource/dashicons/.
category: 'wp-bootstrap-blocks', // Block category — Group blocks together based on common traits E.g. common, formatting, layout widgets, embed.
keywords: [
__( 'Row', 'wp-bootstrap-blocks' ),
__( 'Bootstrap Row', 'wp-bootstrap-blocks' ),
__( 'Bootstrap', 'wp-bootstrap-blocks' ),
],
supports: {
align: [ 'full' ],
},
transforms,
// attributes are defined server side with register_block_type(). This is needed to make default attributes available in the blocks render callback.
getEditWrapperProps( attributes ) {
return {
'data-alignment': attributes.alignment,
'data-vertical-alignment': attributes.verticalAlignment,
'data-editor-stack-columns': attributes.editorStackColumns,
'data-no-gutters': attributes.noGutters,
'data-horizontal-gutters': attributes.horizontalGutters,
};
},
edit,
save() {
return <InnerBlocks.Content />;
},
} );