# gutenify/trunk/core/dist/blocks/map/index.php

Gutenify – Visual Site Builder Blocks &amp; Starter Templates, version trunk. 17 lines.

- Page: https://pluginprobe.com/plugins/gutenify/trunk/code/core/dist/blocks/map/index.php
- Raw: https://pluginprobe.com/plugins/gutenify/trunk/raw/core/dist/blocks/map/index.php
- Modified: 2025-01-09T08:09:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/gutenify/trunk/code/core/dist/blocks/map/index.php#L10-L20`.

```php
<?php
namespace gutenify;

defined( 'ABSPATH' ) || exit;

class Map{
	public static function init() {
		add_action( 'init', array( __CLASS__, 'register_block' ) );
	}

	public static function register_block() {
		register_block_type( __DIR__ );
	}
}

Map::init();

```
