You are here

README.txt in Word Link 7

Same filename and directory in other branches
  1. 8 README.txt
  2. 7.2 README.txt
Non-displayable characters.

File

README.txt
View source
  1. -- SUMMARY --
  2. The Word Link module allows you to automatically convert specific
  3. words into links. It works with the fields of your content types.
  4. This can be useful for crossposting your site's pages, or
  5. for the contextual advertising of your partners (SEO).
  6. * Features:
  7. - Convert word in content with a link.
  8. - Convert word to link in comments.
  9. - Can only highlight finded words.
  10. - Can set on which content types and which fields it will be affected.
  11. - Can set the limit of words to be converted.
  12. - Can set a list of HTML tags that will be ignored.
  13. - Can specify case sensitivity.
  14. - Can set a path on which words will not be converted or path only on which
  15. it will be converted.
  16. - Works for Cyrillic (PCRE 8.10 or higher).
  17. - Import words from taxonomy terms.
  18. - Import words from CSV file.
  19. - Export words to CSV file.
  20. - Bulk delete operation.
  21. - Sortable tableselect with pager.
  22. * Need to know:
  23. Word Link module uses DOMDocument class that build in PHP from version 5.
  24. And for loading HTML it uses loadHTML method. This means that your HTML
  25. does not have to be well-formed, but if it is not, it can cause errors,
  26. especially when using deprecated tags or HTML 5 tags. So it’s better that
  27. your fields/comments HTML meet the requirements of XHTML 1.0.
  28. * Example:
  29. "Nam aliquam egestas congue. Sed at odio odio, quis viverra dolor.
  30. Vestibulum sed mauris id elit vehicula tincidunt. Integer quis magna
  31. tortor, non ultrices elit. Nunc quis amet."
  32. Would become:
  33. "Nam aliquam egestas congue. Sed at odio odio,
  34. quis viverra dolor.
  35. Vestibulum sed mauris id elit vehicula tincidunt. Integer
  36. quis magna tortor,
  37. non ultrices elit.
  38. Nunc quis amet."
  39. -- REQUIREMENTS --
  40. - PHP 5.
  41. - For unicode symbols PCRE (Perl Compatible Regular Expressions) 8.10 or higher.
  42. -- INSTALLATION --
  43. * Put the module in your drupal modules directory and enable it in
  44. admin/modules.
  45. -- CONFIGURATION --
  46. - Configure user permissions in Administration » People » Permissions:
  47. Go to admin/people/permissions and grant permission to any roles
  48. that need to be able to add and edit words.
  49. - Configure content types and fields:
  50. You can set node types, fields and convert limit at
  51. admin/config/content/word-link.
  52. Here will be present content types that have at least one texarea field.
  53. Pay attention that if node will be saved with field format 'plain_text'
  54. any words would not be converted to a web-link.
  55. - Add a new word:
  56. Just follow the admin/config/content/word-link/add/link and fill out the form.
  57. Also here you may specify case sensitivity, link title and inner drupal path
  58. on which words will not be converted.