components
7 years ago
donation-form
7 years ago
donation-form-grid
6 years ago
donor-wall
7 years ago
utils
7 years ago
README.md
8 years ago
load.js
7 years ago
load.php
7 years ago
load.php
29 lines
| 1 | <?php |
| 2 | // Exit if access directly. |
| 3 | if ( ! defined( 'ABSPATH' ) ) { |
| 4 | exit; |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * Add Custom Block Category for Give blocks |
| 9 | */ |
| 10 | function give_blocks_category( $categories, $post ) { |
| 11 | return array_merge( |
| 12 | $categories, |
| 13 | array( |
| 14 | array( |
| 15 | 'slug' => 'give', |
| 16 | 'title' => __( 'Give', 'give' ), |
| 17 | ), |
| 18 | ) |
| 19 | ); |
| 20 | } |
| 21 | add_filter( 'block_categories', 'give_blocks_category', 10, 2 ); |
| 22 | |
| 23 | /** |
| 24 | * Blocks |
| 25 | */ |
| 26 | require_once GIVE_PLUGIN_DIR . 'blocks/donation-form/class-give-donation-form-block.php'; |
| 27 | require_once GIVE_PLUGIN_DIR . 'blocks/donation-form-grid/class-give-donation-form-grid-block.php'; |
| 28 | require_once GIVE_PLUGIN_DIR . 'blocks/donor-wall/class-give-donor-wall.php'; |
| 29 |