* @link https://www.fireplugins.com * @copyright Copyright © 2023 FirePlugins All Rights Reserved * @license GNU GPLv3 or later */ namespace FireBox\Core\Blocks\Form; if (!defined('ABSPATH')) { exit; // Exit if accessed directly. } class Text extends \FireBox\Core\Blocks\Block { /** * Block identifier. * * @var string */ protected $name = 'text'; /** * Gutenberg Editor block script. * * @var string */ protected $editor_script = 'fb-block-text'; /** * Registers Gutenberg Editor block assets. * * @return void */ public function assets() { wp_register_script( 'fb-block-text', FBOX_MEDIA_ADMIN_URL . 'js/blocks/blocks/form/text.js', ['wp-i18n', 'wp-blocks', 'wp-editor', 'wp-components', 'wp-api-fetch'], FBOX_VERSION, true ); } }