| 1 |
<?php |
| 2 |
/** |
| 3 |
* Additional PHP for blocks. |
| 4 |
* |
| 5 |
* @package ghostkit |
| 6 |
*/ |
| 7 |
|
| 8 |
if ( ! defined( 'ABSPATH' ) ) { |
| 9 |
exit; |
| 10 |
} |
| 11 |
|
| 12 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/widgetized-area/block.php'; |
| 13 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/instagram/block.php'; |
| 14 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/twitter/block.php'; |
| 15 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/table-of-contents/block.php'; |
| 16 |
|
| 17 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/block.php'; |
| 18 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/text/block.php'; |
| 19 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/email/block.php'; |
| 20 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/name/block.php'; |
| 21 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/url/block.php'; |
| 22 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/phone/block.php'; |
| 23 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/number/block.php'; |
| 24 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/date/block.php'; |
| 25 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/textarea/block.php'; |
| 26 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/select/block.php'; |
| 27 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/checkbox/block.php'; |
| 28 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/radio/block.php'; |
| 29 |
require_once ghostkit()->plugin_path . 'gutenberg/blocks/form/fields/hidden/block.php'; |
| 30 |
|
| 31 |
require_once ghostkit()->plugin_path . 'gutenberg/plugins/color-palette/index.php'; |
| 32 |
require_once ghostkit()->plugin_path . 'gutenberg/plugins/customizer/index.php'; |
| 33 |
require_once ghostkit()->plugin_path . 'gutenberg/plugins/custom-code/index.php'; |
| 34 |
require_once ghostkit()->plugin_path . 'gutenberg/plugins/typography/index.php'; |
| 35 |
|