Bachir Soussi Chiadmi e8cadc31e1 patched link module to allow more tld 7 年之前
..
tests e8cadc31e1 patched link module to allow more tld 7 年之前
views 37fbabab56 non security modules update 9 年之前
LICENSE.txt f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
README.txt aea9683c77 updated link module 8 年之前
link-rtl.css 37fbabab56 non security modules update 9 年之前
link-validate_url-2299657-46.patch e8cadc31e1 patched link module to allow more tld 7 年之前
link.css f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
link.devel_generate.inc 37fbabab56 non security modules update 9 年之前
link.diff.inc f2b8ace9b7 FINAL suepr merge step : added all modules to this super repos 9 年之前
link.info aea9683c77 updated link module 8 年之前
link.install e8cadc31e1 patched link module to allow more tld 7 年之前
link.migrate.inc 37fbabab56 non security modules update 9 年之前
link.module e8cadc31e1 patched link module to allow more tld 7 年之前

README.txt

Module description
------------------
The link module can be count to the top 50 modules in Drupal installations and provides a standard custom content field for links. With this module links can be added easily to any content types and profiles and include advanced validating and different ways of storing internal or external links and URLs. It also supports additional link text title, site wide tokens for titles and title attributes, target attributes, css class attribution, static repeating values, input conversion, and many more.

Requirements / Dependencies
---------------------------
1. Drupal 6: Custom content module (CCK)
2. Drupal 7: Fields API is provided already by core [no dependencies].
3. Drupal 8: Link module is in core now. No module installation needed. Yay! Don't forget to activate it. It's deactivated by default.

INFO Since some misleading user reports we need to clarify here - Link module is NOT about to add links to any menus or the navigation nor primary/secondary menu. This can be done with default menu module (part of Drupal core). The Link module provides an additional custom field for storing and validating links to be added with any content type, which means another input block additional to your text-body, title, image and any other input you can make on new content creation.

Installation
------------
1. Drop the entire link module directory into your 'sites/all/modules' folder
2. Enable the module from the Administration area modules page (admin/build/modules)
3. Create or Edit a content-type and add a new field of type link (admin/content/types in D6, admin/structure/types in D7)

Configuration
-------------
Configuration is only slightly more complicated than a text field. Link text titles for URLs can be made required, set as instead of URL, optional (default), or left out entirely. If no link text title is provided, the trimmed version of the complete URL will be displayed. The target attribute should be set to "_blank", "top", or left out completely (checkboxes provide info). The rel=nofollow attribute prevents the link from being followed by certain search engines. More info at Wikipedia (http://en.wikipedia.org/wiki/Spam_in_blogs#rel.3D.22nofollow.22).

Example
-------
If you were to create a field named 'My New Link', the default display of the link would be: where items between [] characters would be customized based on the user input.

The link module supports both, internal and external URLs. URLs are validated on input. Here are some examples of data input and the default view of a link: http://drupal.org results in http://drupal.org, but drupal.org results in http://drupal.org, while will convert into http://drupal.org and node/74971 into http://drupal.org/project/link

Anchors and query strings may also be used in any of these cases, including: node/74971/edit?destination=node/74972#pager

Theming and Output
------------------
Since link module is mainly a data storage field in a modular framework, the theming and output is up to the site builder and other additional modules. There are many modules in the Drupal repository, which control the output of fields perfectly and can handle rules, user actions, markup dependencies, and can vary the output under many different conditions, with much more efficience and flexibility for different scenarios. Please check out modules like views, display suite, panels, etc for such needs.