styles_ui.install 649 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * @file styles/contrib/styles_ui/styles_ui.install
  4. * Install, update and uninstall functions for the Styles module.
  5. */
  6. /**
  7. * Implement hook_install().
  8. */
  9. function styles_ui_install() {
  10. return array();
  11. }
  12. /**
  13. * Implement hook_uninstall().
  14. */
  15. function styles_ui_uninstall() {
  16. return array();
  17. }
  18. /**
  19. * Rebuild styles.
  20. */
  21. function styles_ui_update_7200() {
  22. cache_clear_all('styles_', 'cache', TRUE);
  23. return array();
  24. }
  25. /**
  26. * Change themes.
  27. */
  28. function styles_ui_update_7201() {
  29. drupal_theme_rebuild();
  30. return array();
  31. }
  32. /**
  33. * Change menu.
  34. */
  35. function styles_ui_update_7206() {
  36. menu_rebuild();
  37. return array();
  38. }