From 5c05eb20e90503f116597ab3d6104a092f127a4d Mon Sep 17 00:00:00 2001
From: Earl Miles <merlin@logrus.com>
Date: Mon, 20 Apr 2009 21:45:09 +0000
Subject: [PATCH] Automatically switch to views content panes if panels_views
 was previously enabled.

---
 ctools.install | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/ctools.install b/ctools.install
index b52290aa..6b63e9b9 100644
--- a/ctools.install
+++ b/ctools.install
@@ -145,3 +145,18 @@ function ctools_update_6002() {
   db_create_table($ret, 'ctools_css_cache', $schema['ctools_css_cache']);
   return $ret;
 }
+
+/**
+ * Take over for the panels_views module if it was on.
+ */
+function ctools_update_6003() {
+  $ret = array();
+
+  $result = db_result(db_query("SELECT status FROM {system} WHERE name = 'panels_views'"));
+  if ($result) {
+    $ret[] = update_sql("DELETE from {system} WHERE name = 'panels_views'");
+    drupal_install_modules(array('views_content'));
+  }
+
+  return $ret;
+}
-- 
GitLab