Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Install, update and uninstall functions for the toolbar module.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2013-02-01 03:27:16 +00:00
|
|
|
* @addtogroup updates-7.x-to-8.x
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2013-04-22 11:25:08 +00:00
|
|
|
function toolbar_update_8000() {
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
// Enable the modules without re-installing the schema.
|
2013-06-06 08:08:39 +00:00
|
|
|
module_enable(array('breakpoint'));
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-02-01 03:27:16 +00:00
|
|
|
* @} End of "addtogroup updates-7.x-to-8.x".
|
Issue #1137920 by jessebeach, lewisnyman, tkoleary, Bojhan, webchick, benjifisher, nod_, sjbassett, kathryn531, effulgentsia, Everett Zufelt: fixed toolbar on small screen sizes and redesign toolbar for desktop.
2012-11-21 17:18:57 +00:00
|
|
|
* The next series of updates should start at 9000.
|
|
|
|
*/
|