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 | includes/freemius-config.php +1 -8 2.8.5trunk View file →
@@ -17,15 +17,8 @@
17 17 * The FreemiusConfig class.
18 18 */
19 19 class FreemiusConfig extends CoreComponent {
20 20 /**
21 - * The constructor
22 - */
23 - public function __construct( $the_plugin_instance ) {
24 - parent::__construct( $the_plugin_instance );
25 - }
26 -
27 - /**
28 21 * Run main hooks
29 22 *
30 23 * @return void
31 24 */
@@ -30,9 +23,9 @@
30 23 * @return void
31 24 */
32 25 public function run() {
33 26 // Add header left links.
34 - add_filter( 'content_blocks_builder_get_header_left_links', [ $this, 'header_links' ] );
27 + add_filter( 'cbb_get_header_left_links', [ $this, 'header_links' ] );
35 28
36 29 // Add the settings page link to plugin list screen.
37 30 add_filter( 'plugin_action_links_' . plugin_basename( BOLDBLOCKS_CBB_ROOT_FILE ), [ $this, 'plugin_settings_links' ] );
38 31