class-blocks.php in Copy Anything to Clipboard for WordPress – Copy Button, Copy Text & Copy Code 3.8.0, at classes/gutenberg/class-blocks.php
| 1 | <?php |
| 2 | /** |
| 3 | * Gutenberg Blocks |
| 4 | * |
| 5 | * @package Copy the Code |
| 6 | * @since 3.1.0 |
| 7 | */ |
| 8 | |
| 9 | namespace CopyTheCode\Gutenberg; |
| 10 | |
| 11 | use CopyTheCode\Gutenberg\Blocks\Icon; |
| 12 | |
| 13 | /** |
| 14 | * Blocks |
| 15 | * |
| 16 | * @since 3.1.0 |
| 17 | */ |
| 18 | class Blocks { |
| 19 | |
| 20 | /** |
| 21 | * Constructor |
| 22 | */ |
| 23 | public function __construct() { |
| 24 | require_once COPY_THE_CODE_DIR . 'classes/gutenberg/blocks/icon/class-block.php'; |
| 25 | |
| 26 | new Icon(); |
| 27 | } |
| 28 | |
| 29 | } |
| 30 | |
| 31 | new Blocks(); |