You are here

function ctools_update_6007 in Chaos Tool Suite (ctools) 7

Same name and namespace in other branches
  1. 6 ctools.install \ctools_update_6007()

The ctools_custom_content table was originally here, but is now moved to its own module.

File

./ctools.install, line 235
Contains install and update functions for ctools.

Code

function ctools_update_6007() {
  $ret = array();
  if (db_table_exists('ctools_custom_content')) {

    // Enable the module to make everything as seamless as possible.
    module_enable(array(
      'ctools_custom_content',
    ), TRUE);
  }
  return $ret;
}