function _theme_revisions_summary in Revisioning 6.3
Same name and namespace in other branches
- 6.4 revisioning_theme.inc \_theme_revisions_summary()
Theme the revisions summary of the supplied node.
Parameters
$node: Node whose revisions to display
Return value
Themed table HTML
1 call to _theme_revisions_summary()
- _revisioning_present_node in ./
revisioning.module - Display all revisions of the supplied node in a themed table with links for the permitted operations above it.
File
- ./
revisioning_theme.inc, line 244 - Include file for revisioning.module; deals with all theming aspects.
Code
function _theme_revisions_summary(&$node) {
drupal_set_title(t('Revisions for %title', array(
'%title' => $node->title,
)));
return drupal_get_form('revisioning_revisions_summary', $node->nid);
}