Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Priorities #527

Merged
merged 1 commit into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions includes/Services/PluginService.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,17 @@ public static function initialize() {

$flow = Data::current_flow();
if ( 'sitegen' === $flow && SiteGenService::is_enabled() ) {
$init_plugins = SiteGenService::get_plugin_recommendations();
if ( is_wp_error( $init_plugins ) ) {
return $init_plugins;
}
$init_plugins = Plugins::get_init();

// Convert { slug->slug } to hash for faster search
// As Php uses array as { [0] -> slug_name } and that won't work with array_key_exists
$plugin_slugs = array_column( $init_plugins, 'slug', 'slug' );

// Iterate and ensure no duplicates are added
$default_plugins = Plugins::get_init();
$default_plugins = SiteGenService::get_plugin_recommendations();
if ( is_wp_error( $default_plugins ) ) {
return $default_plugins;
}
foreach ( $default_plugins as $default_plugin ) {
if ( ! array_key_exists( $default_plugin['slug'], $plugin_slugs ) ) {
$init_plugins[] = $default_plugin;
Expand Down
Loading