Automattic\WooCommerce\Internal\VariationGallery
Package{} │ WC 1.0 Variation gallery package entry point.
Registered in \Automattic\WooCommerce\Packages::$merged_packages against the woocommerce-additional-variation-images slug, so this class is the single bootstrap surface for the merged variation gallery feature.
No Hooks.
Usage
$Package = new Package();
// use class methods
Methods
public get_option( self::ENABLE_OPTION_NAME, 'no' )
ERROR: no method name found on line `public const FEATURE_ID = 'variation_gallery';`
public static prepare()
public get( LegacyVariationGalleryCompatibility::class )->register()
ERROR: no method name found on line `public const ENABLE_OPTION_NAME = 'wc_feature_woocommerce_additional_variation_images_enabled';`
public init()
ERROR: no method name found on line `public const FEATURE_ID = 'variation_gallery';`
public if ( ! self::is_enabled() )
public static is_enabled()
public static maybe_schedule_migration()
ERROR: no method name found on line `* Schedule the legacy variation gallery migration if it hasn't already`
ERROR: no method name found on line `);`
ERROR: no method name found on line `return;`
ERROR: no method name found on line `*`
ERROR: no method name found on line `);`
ERROR: no method name found on line `self::UPDATE_CALLBACK_HOOK,`
ERROR: no method name found on line `*`
ERROR: no method name found on line `* Early bootstrap hook fired by `Packages::prepare_packages` at`
private static has_pending_or_running_migration( array $args )
ERROR: no method name found on line `return;`
ERROR: no method name found on line `* Reads the same option as the Features toggles, so the `FeaturesController``
ERROR: no method name found on line `}`
ERROR: no method name found on line ``
ERROR: no method name found on line `* @return bool`
ERROR: no method name found on line `* request.`
ERROR: no method name found on line ``
ERROR: no method name found on line `* @return bool`
ERROR: no method name found on line ``
Package{} Package{} code
WC 10.9.4
class Package {
/**
* Action Scheduler hook for DB update callbacks.
*/
private const UPDATE_CALLBACK_HOOK = 'woocommerce_run_update_callback';
/**
* Action Scheduler group for DB update callbacks.
*/
private const UPDATE_CALLBACK_GROUP = 'woocommerce-db-updates';
/**
* The feature id used by `FeaturesController` (Settings → Advanced → Features).
*/
public const FEATURE_ID = 'variation_gallery';
/**
* Option backing the variation gallery feature toggle.
*/
public const ENABLE_OPTION_NAME = 'wc_feature_woocommerce_additional_variation_images_enabled';
/**
* Whether the merged variation gallery feature is enabled for the current
* request.
*
* Reads the same option as the Features toggles, so the `FeaturesController`
* and the merged-package machinery share a single source of truth. Defaults
* to off for the 10.9 canary period.
*
* @return bool
*/
public static function is_enabled() {
return 'yes' === get_option( self::ENABLE_OPTION_NAME, 'no' );
}
/**
* Early bootstrap hook fired by `Packages::prepare_packages` at
* plugins_loaded priority -100. No-op for the variation gallery feature.
*
* @internal
*/
public static function prepare(): void {
}
/**
* Initialize the merged variation gallery feature.
*
* @internal
*/
final public static function init(): void {
if ( ! self::is_enabled() ) {
return;
}
$container = wc_get_container();
$container->get( ClassicVariationGalleryAdmin::class )->register();
$container->get( LegacyVariationGalleryCompatibility::class )->register();
// Action Scheduler initializes on `init`, not `plugins_loaded`.
add_action( 'init', array( __CLASS__, 'maybe_schedule_migration' ), 20 );
}
/**
* Schedule the legacy variation gallery migration if it hasn't already
* completed and isn't already pending or running.
*
* @internal
*/
public static function maybe_schedule_migration(): void {
if ( get_option( Migration::COMPLETED_OPTION ) ) {
return;
}
$args = array( 'update_callback' => array( Migration::class, 'run' ) );
if ( self::has_pending_or_running_migration( $args ) ) {
return;
}
WC()->queue()->add(
self::UPDATE_CALLBACK_HOOK,
$args,
self::UPDATE_CALLBACK_GROUP
);
}
/**
* Determine whether the migration is already pending or running.
*
* @param array<string, array<int, string>> $args Exact callback args for the migration action.
* @return bool
*/
private static function has_pending_or_running_migration( array $args ): bool {
if ( null !== WC()->queue()->get_next( self::UPDATE_CALLBACK_HOOK, $args, self::UPDATE_CALLBACK_GROUP ) ) {
return true;
}
$running_actions = WC()->queue()->search(
array(
'hook' => self::UPDATE_CALLBACK_HOOK,
'args' => $args,
'status' => \ActionScheduler_Store::STATUS_RUNNING,
'per_page' => 1,
'group' => self::UPDATE_CALLBACK_GROUP,
),
'ids'
);
return ! empty( $running_actions );
}
}