| 1 |
Overview:
|
| 2 |
--------
|
| 3 |
The taxonomy_image module allows site administrators to associate images
|
| 4 |
with taxonomy terms. With the association created, an admin can then make
|
| 5 |
a call to 'taxonomy_image_display()' from their theme or other PHP code
|
| 6 |
to display the appropriate image.
|
| 7 |
|
| 8 |
The module allows the admin to create a one-to-one term-to-image relationship.
|
| 9 |
With image display recursion, it is also possible to create a many-to-one
|
| 10 |
relationship. This is useful if creating taxonomy hierarchies in which an
|
| 11 |
entire tree of terms will use the same image. With recursion enabled, you
|
| 12 |
only need to associate an image with the tree parent, and all children will
|
| 13 |
automatically inherit the same image.
|
| 14 |
|
| 15 |
|
| 16 |
Features:
|
| 17 |
--------
|
| 18 |
- Image configuration happens within existing admin/categories menu structure
|
| 19 |
- Admins can add custom tags to <img> markup when displaying images
|
| 20 |
- Allows one-to-one term-to-image relationships
|
| 21 |
- Allows many-to-one term-to-image relationships
|
| 22 |
- Administrators can force images to be a standard size
|
| 23 |
- Admin-permitted users can disable the images
|
| 24 |
- Utilizes core file.inc api, supporting public and private files
|
| 25 |
- Small module with specific, focused functionality
|
| 26 |
|
| 27 |
|
| 28 |
Installation and configuration:
|
| 29 |
------------------------------
|
| 30 |
Please refer to the INSTALL file for complete installation and
|
| 31 |
configuration instructions.
|
| 32 |
|
| 33 |
|
| 34 |
Comments:
|
| 35 |
--------
|
| 36 |
Other modules do provide similar functionality. However, I didn't find a
|
| 37 |
module that provided only what I needed and that was simple to configure,
|
| 38 |
hence the reason I wrote this module. I didn't want anything more than I
|
| 39 |
needed.
|
| 40 |
|
| 41 |
|
| 42 |
Requires:
|
| 43 |
--------
|
| 44 |
- Drupal 5.0
|
| 45 |
- enabled taxonomy.module
|
| 46 |
|
| 47 |
|
| 48 |
Credits:
|
| 49 |
-------
|
| 50 |
- Written and maintained by Jeremy Andrews <jeremy@kerneltrap.org>
|