You are here

README.txt in Word Link 7.2

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

File

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