You are here

function panopoly_update_7102 in Panopoly 7

Enable the core Block module and place the Help block.

File

./panopoly.install, line 25
Install, update and uninstall hooks.

Code

function panopoly_update_7102() {
  if (!module_exists('block')) {
    module_enable(array(
      'block',
    ));
  }
  _panopoly_install_help_block();
}