You are here

function commons_update_3109 in Drupal Commons 7.3

Replace the Placeholder module with the Elements module.

File

./commons.install, line 703
Install, update and uninstall functions for the Commons install profile.

Code

function commons_update_3109() {
  if (module_exists('placeholder')) {
    module_disable(array(
      'placeholder',
    ));
  }
  module_enable(array(
    'elements',
  ));
  return array();
}