README.txt 848 B

1234567891011121314151617181920212223
  1. Styles are containers to group similar field display formatters. For example, a
  2. style on a Filefield may contain several formatters based on the mimetype or
  3. stream, while a style on a node reference might display various formatters
  4. based on the referenced node type.
  5. By itself, this module does nothing. Rather, it provides an API available for
  6. use by other modules. The Media Styles module, bundled with the
  7. <a href="/project/media">Media</a> module, is a fully featured module utilizing
  8. the API.
  9. Hooks provided:
  10. <code>
  11. hook_styles_default_containers()
  12. hook_styles_default_styles()
  13. hook_styles_default_presets()
  14. hook_styles_default_containers_alter(&$style)
  15. hook_styles_default_styles_alter(&$style)
  16. hook_styles_default_presets_alter(&$style)
  17. hook_styles_delete(&$style)
  18. </code>
  19. See http://groups.drupal.org/node/35206 for a quick background.