function toolbar_update_8000

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 19
Install, update and uninstall functions for the toolbar module.

Code

function toolbar_update_8000() {

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