| Versionen | |
|---|---|
| drupal6 | hook_translation_link_alter(&$links, $path) |
| drupal7 | hook_translation_link_alter(array &$links, $path) |
Perform alterations on translation links.
A translation link may need to point to a different path or use a translated link text before going through l(), which will just handle the path aliases.
$links Nested array of links keyed by language code.
$path The current path.
None.
modules/
<?php
function hook_translation_link_alter(array &$links, $path) {
global $language;
if (isset($links[$language])) {
foreach ($links[$language] as $link) {
$link['attributes']['class'] .= ' active-language';
}
}
}
?>
Kommentare
Kommentar hinzufügen