Submit
Path:
~
/
home
/
contenidosenred
/
www
/
ondemand
/
wp-content
/
plugins
/
wp-ulike
/
admin
/
settings
/
assets
/
js
/
File Content:
gutenberg.js
/** * * ----------------------------------------------------------- * * Codestar Framework Gutenberg Block * A Simple and Lightweight WordPress Option Framework * * ----------------------------------------------------------- * */ ( function( blocks, blockEditor, element, components ) { if ( !window.ulf_gutenberg_blocks ) { return; } Object.values(window.ulf_gutenberg_blocks).forEach( function( block ) { var registerBlockType = blocks.registerBlockType; var PlainText = blockEditor.PlainText; var createElement = element.createElement; var RawHTML = element.RawHTML; var Button = components.Button; registerBlockType('ulf-gutenberg-block/block-'+block.hash, { title: block.gutenberg.title, description: block.gutenberg.description, icon: block.gutenberg.icon || 'screenoptions', category: block.gutenberg.category || 'widgets', keywords: block.gutenberg.keywords, supports: { html: false, className: false, customClassName: false, }, attributes: { shortcode: { string: 'string', source: 'text', } }, edit: function (props) { return ( createElement('div', {className: 'ulf-shortcode-block'}, createElement(Button, { 'data-modal-id': block.modal_id, 'data-gutenberg-id': block.hash, className: 'is-secondary ulf-shortcode-button', onClick: function () { window.ulf_gutenberg_props = props; }, }, block.button_title ), createElement(PlainText, { placeholder: block.gutenberg.placeholder, className: 'input-control blocks-shortcode__textarea', onChange: function (value) { props.setAttributes({ shortcode: value }); }, value: props.attributes.shortcode }) ) ); }, save: function (props) { return createElement(RawHTML, {}, props.attributes.shortcode); } }); }); })( window.wp.blocks, window.wp.blockEditor, window.wp.element, window.wp.components );
Edit
Rename
Chmod
Delete
FILE
FOLDER
INFO
Name
Size
Permission
Action
gutenberg.js
2278 bytes
0644
main.js
97655 bytes
0644
main.min.js
46581 bytes
0644
plugins.js
66638 bytes
0644
plugins.min.js
38177 bytes
0644
N4ST4R_ID | Naxtarrr