Shortcode_Block::js_config()

Summary

No summary available.

Source

File: src/BigCommerce/Editor/Gutenberg/Blocks/Shortcode_Block.php

	public function js_config() {
		return [
			'name'       => $this->name(),
			'title'      => $this->title(),
			'icon'       => $this->icon(),
			'category'   => $this->category(),
			'keywords'   => $this->keywords(),
			'shortcode'  => $this->shortcode(),
			'block_html' => [
				'title' => $this->html_title(),
				'image' => $this->html_image(),
			],
		];
	}


User Contributed Notes

You must log in before being able to contribute a note or feedback.