function toolbar_update_8001

Enable the Breakpoint and Config modules.

The 7.x version of the Toolbar module had no dependencies. The 8.x version depends on the Breakpoint and Configuration manager modules.

Related topics

File

drupal/core/modules/toolbar/toolbar.install, line 38
Install, update and uninstall functions for the toolbar module.

Code

function toolbar_update_8001() {

  // Enable the modules without re-installing the schema.
  update_module_enable(array(
    'breakpoint',
  ));
}