| Server IP : 82.208.35.60 / Your IP : 216.73.217.116 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/container/ |
Upload File : |
/**
* BLOCK: wp-bootstrap-blocks/container
*/
// 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 { stack } from '../icons';
import './editor.scss';
const { InnerBlocks } = BlockEditor || Editor; // Fallback to deprecated '@wordpress/editor' for backwards compatibility
registerBlockType( 'wp-bootstrap-blocks/container', {
// Block name. Block names must be string that contains a namespace prefix. Example: my-plugin/my-custom-block.
title: __( 'Bootstrap Container', 'wp-bootstrap-blocks' ), // Block title.
icon: stack,
category: 'wp-bootstrap-blocks', // Block category — Group blocks together based on common traits E.g. common, formatting, layout widgets, embed.
keywords: [
__( 'Container', 'wp-bootstrap-blocks' ),
__( 'Bootstrap Container', 'wp-bootstrap-blocks' ),
__( 'Bootstrap', 'wp-bootstrap-blocks' ),
],
supports: {
align: false,
},
// attributes are defined server side with register_block_type(). This is needed to make default attributes available in the blocks render callback.
edit,
save() {
return <InnerBlocks.Content />;
},
} );