| 5 theme.inc | theme_links($links, $attributes = array('class' => 'links')) |
| 6 theme.inc | theme_links( |
| 7 theme.inc | theme_links($variables) |
| 8 theme.inc | theme_links($variables) |
Return a themed set of links.
Parameters
$links: An array of links to be themed.
$delimiter: A string used to separate the links.
Return value
A string containing the themed links.
Related topics
1 call to theme_links()
10 theme calls to theme_links()
File
- includes/
theme.inc, line 453 - The theme system, which controls the output of Drupal.
Code
function theme_links($links, $delimiter = ' | ') {
return implode($delimiter, $links);
}
Login or register to post comments