Skip to content

Instantly share code, notes, and snippets.

@khofmeyer
Created April 25, 2016 16:05
Show Gist options
  • Save khofmeyer/d6151e444fb34e5d9067e9917cb2ed7a to your computer and use it in GitHub Desktop.
Save khofmeyer/d6151e444fb34e5d9067e9917cb2ed7a to your computer and use it in GitHub Desktop.
<?php
/**
* @file
* Update hooks for deploying changes to my awesome website.
*/
/**
* Implements hook_install().
*/
function cm_deploy_install() {
// Set an initial value for the schema version so we can run updates after install.
drupal_set_installed_schema_version('delicious_deploy', 7100);
}
/**
* Enable some features.
*/
function cm_deploy_update_7106() {
$module_list = array(
'cm_taxonomy',
);
module_enable($module_list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment