You are here

function ctools_update_6007 in Chaos Tool Suite (ctools) 6

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

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

File

./ctools.install, line 221
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.
    drupal_install_modules(array(
      'ctools_custom_content',
    ));
  }
  return $ret;
}