load(); } ); } /** * Plugins loaded action callback. * * @return void * * @since 1.0.0 */ public function plugins_loaded(): void { if ( ! defined( 'GENERATEBLOCKS_VERSION' ) || ! defined( 'GENERATEBLOCKS_PRO_VERSION' ) ) { add_action( 'admin_notices', [ $this, 'show_admin_notice' ] ); return; } $this->load_modules(); } /** * Show admin notice. * * @return void * * @since 1.0.0 */ public function show_admin_notice() { $screen = get_current_screen(); if ( isset( $screen->parent_file ) && 'plugins.php' === $screen->parent_file && 'update' === $screen->id ) { return; } printf( '

%s

', esc_html__( 'GenerateCloud is not working because you need to activate GenerateBlocks and GenerateBlocks Pro.', 'generatecloud' ) ); } }