diff --git a/commerce_popular_products.install b/commerce_popular_products.install index f369503dbdd1179ae1a15dd2be0b9b9d168d1783..5991c726670e2136e542f0c3b3ab708e7942f2ae 100644 --- a/commerce_popular_products.install +++ b/commerce_popular_products.install @@ -6,26 +6,6 @@ * Includes various update functions for managing configuration deployment. */ -/** - * Implements hook_install(). - */ -function commerce_popular_products_install() { - $updates = drupal_get_schema_versions('commerce_popular_products'); - if (!empty($updates)) { - foreach ($updates as $version) { - $function = 'commerce_popular_products_update_' . $version; - if (function_exists($function)) { - $ret = $function(); - foreach ($ret as $id => $value) { - if (!empty($value['query'])) { - $error = ($value['success']) ? 'status' : 'error'; - drupal_set_message(check_plain($value['query']), $error); - } - } - } - } - } -} /** * Implements hook_uninstall().