Automattic\WooCommerce\Blocks\Utils

BlockTemplateUtils::get_fallback_template_from_db()public staticWC 1.0

Gets the archive-product fallback template stored on the db for a given slug.

Method of the class: BlockTemplateUtils{}

No Hooks.

Return

true|false|Object.

Usage

$result = BlockTemplateUtils::get_fallback_template_from_db( $template_slug, $db_templates );
$template_slug(string) (required)
Slug to check for fallbacks.
$db_templates(array) (required)
Templates that have already been found on the db.

BlockTemplateUtils::get_fallback_template_from_db() code WC 9.4.2

public static function get_fallback_template_from_db( $template_slug, $db_templates ) {
	$registered_template = self::get_template( $template_slug );

	if ( $registered_template && isset( $registered_template->fallback_template ) ) {
		foreach ( $db_templates as $template ) {
			if ( $registered_template->fallback_template === $template->slug ) {
				return $template;
			}
		}
	}

	return false;
}