# copy-the-code/3.8.0/classes/gutenberg/class-blocks.php

Copy Anything to Clipboard for WordPress – Copy Button, Copy Text &amp; Copy Code, version 3.8.0. 31 lines.

- Page: https://pluginprobe.com/plugins/copy-the-code/3.8.0/code/classes/gutenberg/class-blocks.php
- Raw: https://pluginprobe.com/plugins/copy-the-code/3.8.0/raw/classes/gutenberg/class-blocks.php
- Modified: 2024-03-24T13:25:52+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/copy-the-code/3.8.0/code/classes/gutenberg/class-blocks.php#L10-L20`.

```php
<?php
/**
 * Gutenberg Blocks
 *
 * @package Copy the Code
 * @since 3.1.0
 */

namespace CopyTheCode\Gutenberg;

use CopyTheCode\Gutenberg\Blocks\Icon;

/**
 * Blocks
 *
 * @since 3.1.0
 */
class Blocks {

	/**
	 * Constructor
	 */
	public function __construct() {
		require_once COPY_THE_CODE_DIR . 'classes/gutenberg/blocks/icon/class-block.php';

		new Icon();
	}

}

new Blocks();
```
