| Versionen | |
|---|---|
| drupal7 | theme_node_links($element) |
Format a set of node links.
$element An associative array containing the properties of the element. Properties used: value
A themed HTML string representing the links.
modules/
<?php
function theme_node_links($element) {
return theme('links', $element['#value'], array('class' => 'links inline'));
}
?>
Kommentare
Kommentar hinzufügen