PluginProbe
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts / trunk
Content Blocks Builder – Create blocks, repeater blocks with carousel, grid, popup layouts vtrunk
2.8.14 2.8.13 2.8.12 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.10 2.8.11 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 trunk 1.0.1 1.0.2 1.1.0 1.1.1 All 147 releases
← All changes | content-blocks-builder.php +8 -8 2.8.2trunk View file →
@@ -3,11 +3,11 @@
3 3 /**
4 4 * Plugin Name: Content Blocks Builder
5 5 * Plugin URI: https://contentblocksbuilder.com?utm_source=CBB&utm_campaign=CBB+visit+site&utm_medium=link&utm_content=Plugin+URI
6 6 * Description: Create blocks by wrapping other blocks into containers or repeaters to create layouts like grid, carousel, popup, accordion — all in the Block Editor. Fast. Easy. Bloat-free.
7 - * Requires at least: 6.6
8 - * Requires PHP: 7.4
9 - * Version: 2.8.2
7 + * Requires at least: 6.9
8 + * Requires PHP: 8.0
9 + * Version: 2.8.14
10 10 * Author: Phi Phan
11 11 * Author URI: https://contentblocksbuilder.com?utm_source=CBB&utm_campaign=CBB+visit+site&utm_medium=link&utm_content=Author+URI
12 12 * License: GPL-3.0
13 13 *
@@ -34,14 +34,14 @@
34 34 * Plugin version
35 35 *
36 36 * @var String
37 37 */
38 - public $version = '2.8.2';
38 + public $version = '2.8.14';
39 39
40 40 /**
41 41 * Components
42 42 *
43 - * @var Array
43 + * @var array
44 44 */
45 45 protected $components = [];
46 46
47 47 /**
@@ -58,9 +58,9 @@
58 58 */
59 59 private static $instance;
60 60
61 61 /**
62 - * A dummy constructor
62 + * The constructor
63 63 */
64 64 private function __construct() {
65 65 }
66 66
@@ -227,9 +227,9 @@
227 227 * @return void
228 228 */
229 229 public function version_upgrade() {
230 230 if ( get_option( 'cbb_current_version' ) !== $this->version ) {
231 - do_action( 'cbb_version_upgraded', get_option( 'cbb_current_version' ), $this->version );
231 + do_action( 'cbb/version_upgraded', get_option( 'cbb_current_version' ), $this->version );
232 232 update_option( 'cbb_current_version', $this->version );
233 233 }
234 234 }
235 235
@@ -376,9 +376,9 @@
376 376 *
377 377 * @return void
378 378 */
379 379 function content_block_builder_activate() {
380 - do_action( 'content_block_builder_activate' );
380 + do_action( 'cbb/activate' );
381 381 }
382 382
383 383 register_activation_hook( __FILE__, __NAMESPACE__ . '\\content_block_builder_activate' );
384 384 }