Automattic\WooCommerce\Blocks\Utils
BlockTemplateUtils::get_fallback_template_from_db
Gets the archive-product fallback template stored on the db for a given slug.
Method of the class: BlockTemplateUtils{}
No Hooks.
Returns
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() BlockTemplateUtils::get fallback template from db code WC 10.8.1
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;
}