diff --git a/modules/product/commerce_product.api.php b/modules/product/commerce_product.api.php
index a5439c0..abb9583 100644
--- a/modules/product/commerce_product.api.php
+++ b/modules/product/commerce_product.api.php
@@ -36,8 +36,16 @@
  *   An array of product type arrays keyed by type.
  */
 function hook_commerce_product_type_info() {
-  // Return the product types defined in the database by the Product UI module.
-  return db_query('SELECT * FROM {commerce_product_type}')->fetchAllAssoc('type', PDO::FETCH_ASSOC);
+  $types = array(
+    'widget' => array(
+      'type' => 'widget',
+      'name' => t('Widget'),
+      'description' => t('A wiget product.'),
+      'help' => t('Add a widget product.'),
+      'revision' => TRUE,
+    ),
+  );
+  return $types;  
 }
 
 /**
