| 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/button/ |
Upload File : |
/**
* BLOCK: wp-bootstrap-blocks/button
*/
// WordPress dependencies
import { registerBlockType } from '@wordpress/blocks';
import { __ } from '@wordpress/i18n';
import edit from './edit';
import { button } from '../icons';
import './editor.scss';
registerBlockType( 'wp-bootstrap-blocks/button', {
// Block name. Block names must be string that contains a namespace prefix. Example: my-plugin/my-custom-block.
title: __( 'Bootstrap Button', 'wp-bootstrap-blocks' ), // Block title.
icon: button,
category: 'wp-bootstrap-blocks', // Block category — Group blocks together based on common traits E.g. common, formatting, layout widgets, embed.
keywords: [
__( 'Button', 'wp-bootstrap-blocks' ),
__( 'Bootstrap Button', 'wp-bootstrap-blocks' ),
__( 'Bootstrap', 'wp-bootstrap-blocks' ),
],
example: {},
// 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 };
},
edit,
save() {
return null;
},
} );