Current File : /home/digitaw/www/wp-content/plugins/event-tickets/src/Tickets/Blocks/Ticket/Block.php
<?php
/**
 * Provides the information required to register the Ticket (singular) block server-side.
 *
 * @since 5.8.0
 *
 * @package TEC\Tickets\Blocks\Tickets;
 */

namespace TEC\Tickets\Blocks\Ticket;

use Tribe__Editor__Blocks__Abstract as Abstract_Block;
use Tribe__Tickets__Main as Tickets_Main;
use TEC\Common\Asset;

/**
 * Class Block.
 *
 * @since 5.8.0
 *
 * @package TEC\Tickets\Blocks\Ticket;
 */
class Block extends Abstract_Block {
	/**
	 * Which is the name/slug of this block
	 *
	 * @since 4.9.2
	 *
	 * @return string
	 */
	public function slug() {
		return 'tickets-item';
	}

	/**
	 * Since we are dealing with a Dynamic type of Block we need a PHP method to render it
	 *
	 * @since 4.9.2
	 *
	 * @param array $attributes
	 *
	 * @return string
	 */
	public function render( $attributes = [] ) {
		// This block has no render.
		return '';
	}

	/**
	 * {@inheritDoc}
	 *
	 * @since 5.8.0
	 */
	public function get_registration_block_type() {
		return __DIR__ . '/block.json';
	}

	/**
	 * {@inheritDoc}
	 *
	 * @since 5.8.0
	 */
	public function get_registration_args( array $args ): array {
		$args['title']       = _x( 'Event Ticket', 'Block title', 'event-tickets' );
		$args['description'] = _x( 'A single configured ticket type.', 'Block description', 'event-tickets' );

		return $args;
	}

	/**
	 * Overrides the parent method to register the editor scripts.
	 *
	 * @since 5.8.0
	 *
	 * @return void
	 */
	public function register() {
		parent::register();
		add_action( 'admin_enqueue_scripts', [ $this, 'register_editor_scripts' ] );
	}

	/**
	 * Registers the editor scripts.
	 *
	 * @since 5.8.0
	 *
	 * @return void
	 */
	public function register_editor_scripts() {
		Asset::add(
			'tec-tickets-ticket-item-block-editor-script',
			'Ticket/editor.js',
			Tickets_Main::VERSION
		)
			->add_to_group_path( 'et-tickets-blocks' )
			->set_dependencies(
				'tribe-tickets-gutenberg-vendor',
				'tec-common-php-date-formatter',
				'tribe-common-gutenberg-vendor'
			)
			->in_footer()
			->register();

		Asset::add(
			'tec-tickets-ticket-item-block-secondary-editor-style',
			'Ticket/editor.css',
			Tickets_Main::VERSION
		)
			->add_to_group_path( 'et-tickets-blocks' )
			->set_dependencies( 'tribe-tickets-gutenberg-main-styles' )
			->register();

		Asset::add(
			'tec-tickets-ticket-item-block-editor-style',
			'Ticket/style-editor.css',
			Tickets_Main::VERSION
		)
			->add_to_group_path( 'et-tickets-blocks' )
			->set_dependencies( 'tec-tickets-ticket-item-block-secondary-editor-style' )
			->register();
	}
}