README.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. Description
  2. -----------
  3. This module provides a method for filtering modules on the modules page as well
  4. as for filtering projects on the update status report.
  5. The supplied filter is simpler than using your browsers find feature which
  6. searches the entire page. The provided filter will filter modules/projects that
  7. do not meet your input.
  8. Along with the filter textfield there are additional
  9. checkboxes that help to narrow the search more. The modules page contains four
  10. checkboxes: Enabled, Disabled, Required, and Unavailable. While the first two
  11. are self-explanatory, the latter two can take an explanation. The Required
  12. checkbox affects visibility of modules that are enabled and have other
  13. module(s) that require it also enabled. The Unavailable checkbox affects
  14. visibility of modules that are disabled and depend on module(s) that are
  15. missing.
  16. The update status report filter also contains four checkboxes: Up-to-Date,
  17. Update available, Security update, and Unknown. These directly affect the
  18. visibility of each project; whether it is up-to-date, there is an update
  19. available, a security update is available, or the status is unknown.
  20. Installation
  21. ------------
  22. To install this module, do the following:
  23. 1. Extract the tar ball that you downloaded from Drupal.org.
  24. 2. Upload the entire directory and all its contents to your modules directory.
  25. Configuration
  26. -------------
  27. To enable and configure this module do the following:
  28. 1. Go to Admin -> Modules, and enable Module Filter.
  29. 2. Go to Admin -> Configuration -> User interface -> Module filter, and make
  30. any necessary configuration changes.
  31. Tabs
  32. ----
  33. By default Module Filter alters the modules page into tabs (Can be disabled on
  34. configuration page). In the tabs view, each package is converted to a vertical
  35. tab rather than a fieldset which greatly increases the ability to browse them.
  36. There are several benefits to using the tabs view over the standard view for
  37. the modules page. I've listed the key benefits below as well as additional
  38. information that pertains to each.
  39. 1. The increased ease of browsing between packages.
  40. 2. Allows all modules to be listed alphabetically outside of their package,
  41. making it all the easier to find the module by name rather than package it
  42. happens to be in.
  43. 3. The operations for a module are moved within the description column giving
  44. the description more "elbow room".
  45. 4. Filtering is restricted to within the active tab or globally when no tab is
  46. selected. By default no tab is selected which will list all modules. When a
  47. tab is active and you want to get back to the 'all' state click on the
  48. active tab to deselect it.
  49. 5. The number of enabled modules per tab is shown on the active tab. (Can be
  50. disabled on configuration page)
  51. 6. Nice visual aids become available showing what modules are to be
  52. enabled/disabled and the number of matching modules in each tab when
  53. filtering. (Can be disabled on configuration page)
  54. 7. The save configuration button becomes more accessible, either staying at
  55. the bottom of the window when the tabs exceed past the bottom and at the
  56. top when scrolling past the tabs. (Can be disabled on configuration page)
  57. 8. When filtering, tabs that do not contain matches can be hidden. (Can be
  58. enabled on configuration page)
  59. 9. Tab states are remembered like individual pages allowing you to move
  60. forward and backward within your selections via your browsers
  61. forward/backward buttons.
  62. 10. When viewing all modules (no active tab) and mousing over modules it's tab
  63. becomes highlighted to signify which tab it belongs to.
  64. Filter operators
  65. ----------------
  66. The modules page's filter has three filter operators available. Filter
  67. operators allow alternative filtering techniques. A filter operator is applied
  68. by typing within the filter textfield 'operator:' (where operator is the
  69. operator type) followed immediately with the string to pass to the operator
  70. function (e.g. 'requires:block'). The available operators are:
  71. description:
  72. Filter based on a module's description.
  73. requiredBy:
  74. Filter based on what a module is required by.
  75. requires:
  76. Filter based on what a module requires.
  77. Multiple filters (or queries) can be applied by space delimiting. For example,
  78. the filter string 'description:ctools views' would filter down to modules with
  79. "ctools" in the description and "views" within the module's name. To pass a
  80. space within a single query wrap it within double quotes (e.g. 'requires:"chaos
  81. tools"' or '"bulk export"').