|
10 | 10 | * Plugin Name: Church Community Builder Core API |
11 | 11 | * Plugin URI: https://www.wpccb.com |
12 | 12 | * Description: A plugin to provide a core integration of the Church Community Builder API into WordPress custom post types |
13 | | - * Version: 1.0.1 |
| 13 | + * Version: 1.0.2 |
14 | 14 | * Author: Jared Cobb |
15 | 15 | * Author URI: https://www.jaredcobb.com/ |
16 | 16 | * License: GPL-2.0+ |
|
27 | 27 | define( 'CCB_CORE_PATH', plugin_dir_path( __FILE__ ) ); |
28 | 28 | define( 'CCB_CORE_URL', plugin_dir_url( __FILE__ ) ); |
29 | 29 | define( 'CCB_CORE_BASENAME', plugin_basename( __FILE__ ) ); |
30 | | -define( 'CCB_CORE_VERSION', '1.0.1' ); |
| 30 | +define( 'CCB_CORE_VERSION', '1.0.2' ); |
31 | 31 |
|
32 | 32 | // Check minimum requirements before proceeding. |
33 | 33 | require_once CCB_CORE_PATH . 'includes/class-ccb-core-requirements.php'; |
|
37 | 37 |
|
38 | 38 | // Code that runs during plugin activation and deactivation. |
39 | 39 | require_once CCB_CORE_PATH . 'includes/class-ccb-core-activator.php'; |
40 | | - register_activation_hook( __FILE__, [ 'CCB_Core_Activator', 'activate' ] ); |
41 | | - register_deactivation_hook( __FILE__, [ 'CCB_Core_Activator', 'deactivate' ] ); |
| 40 | + register_activation_hook( __FILE__, array( 'CCB_Core_Activator', 'activate' ) ); |
| 41 | + register_deactivation_hook( __FILE__, array( 'CCB_Core_Activator', 'deactivate' ) ); |
42 | 42 |
|
43 | 43 | // Internationalization, dashboard-specific hooks, and public-facing site hooks. |
44 | 44 | require_once CCB_CORE_PATH . 'includes/class-ccb-core.php'; |
|
0 commit comments