wp-matchplay/matchplay.php

29 lines
947 B
PHP

<?php
/**
* Plugin Name: Matchplay
* Description: Custom block to show results of a Matchplay tournament
* Requires at least: 6.1
* Requires PHP: 7.0
* Version: 0.1.0
* Author: Ben Harris
* Author URI: https://tcpinball.org/matchplay-plugin/
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: tcpinball
*
* @package create-block
*/
/**
* Registers the block using the metadata loaded from the `block.json` file.
* Behind the scenes, it registers also all assets so they can be enqueued
* through the block editor in the corresponding context.
*
* @see https://developer.wordpress.org/reference/functions/register_block_type/
*/
function create_block_matchplay_block_init(): void {
register_block_type_from_metadata( __DIR__ . '/build' );
}
add_action( 'init', 'create_block_matchplay_block_init' );