Issue #1837840 by amontero, tstoeckler: Add clarification to l() docs as to when to use t() instead

merge-requests/26/head
Jennifer Hodgdon 2012-11-13 08:22:07 -08:00
parent a6ecde70a9
commit a60b8dec7a
1 changed files with 8 additions and 0 deletions

View File

@ -2379,6 +2379,14 @@ function drupal_attributes(array $attributes = array()) {
* internal links output by modules should be generated by this function if
* possible.
*
* However, for links enclosed in translatable text you should use t() and
* embed the HTML anchor tag directly in the translated string. For example:
* @code
* t('Visit the <a href="@url">settings</a> page', array('@url' => url('admin')));
* @endcode
* This keeps the context of the link title ('settings' in the example) for
* translators.
*
* @param string $text
* The translated link text for the anchor tag.
* @param string $path