1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * @file styles/contrib/styles_ui/styles_ui.install
- * Install, update and uninstall functions for the Styles module.
- */
- /**
- * Implement hook_install().
- */
- function styles_ui_install() {
- return array();
- }
- /**
- * Implement hook_uninstall().
- */
- function styles_ui_uninstall() {
- return array();
- }
- /**
- * Rebuild styles.
- */
- function styles_ui_update_7200() {
- cache_clear_all('styles_', 'cache', TRUE);
- return array();
- }
- /**
- * Change themes.
- */
- function styles_ui_update_7201() {
- drupal_theme_rebuild();
- return array();
- }
- /**
- * Change menu.
- */
- function styles_ui_update_7206() {
- menu_rebuild();
- return array();
- }
|