README.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. Description
  2. -----------
  3. Drupal allows you to define a different theme for administration pages
  4. (Administer -> Site configuration -> Administration theme).
  5. By default this only applies to pages with a path starting with 'admin'
  6. and content editing pages.
  7. The Administration theme module adds a few more option to
  8. the default configuration page like :
  9. - Use administration theme for batch processing
  10. - Use administration theme for code reviews
  11. - ...
  12. Some of these pages will only appear if they apply to your installation,
  13. i.e. you have the module installed which generates these pages.
  14. You also have the option to define a custom set of Drupal paths
  15. or aliases to apply the administration theme for.
  16. Requirements
  17. ------------
  18. This module requires Drupal 7. A Drupal 5 and 6 version are available.
  19. Installation
  20. ------------
  21. 1) Copy/upload the admin_theme module folder to the sites/all/modules
  22. directory of your Drupal installation.
  23. 2) Enable the Administration theme module in Drupal (administer -> modules).
  24. Configuration
  25. -------------
  26. You can enable/disable the administration theme on the administration theme
  27. configuration page.
  28. Administration theme can be configured at :
  29. Administer -> Site configuration -> Administration theme
  30. Developers
  31. ----------
  32. You can add define extra pages where the administration theme
  33. should be applied to by implementing the hook_admin_theme_info
  34. and hook_admin_theme_check hooks in your modules.
  35. The first one gets all "options" and the second one checks
  36. if each of those options should should be applied to a path.
  37. Check out admin_theme_admin_theme_info and admin-theme_admin_theme_check
  38. for an example implementation.
  39. Authors
  40. ------
  41. Davy Van Den Bremt <info@davyvandenbremt.be>
  42. http://www.davyvandenbremt.be
  43. Joozer Tohfafarosh