| @@ -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 | |