You are here

function revisioning_node_overview in Revisioning 8

Same name and namespace in other branches
  1. 7 revisioning.module \revisioning_node_overview()

Display node overview.

Display all revisions of the supplied node in a themed table with links for the permitted operations above it.

Return value

array render array as returned by drupal_get_form()

1 call to revisioning_node_overview()
_revisioning_ux_revisioning_redirect in revisioning_ux/revisioning_ux.module
Redirect to revisions.
1 string reference to 'revisioning_node_overview'
revisioning_menu_alter in ./revisioning.module
Implements hook_menu_alter().

File

./revisioning.module, line 1048
Allows content to be updated and reviewed before submitting it for publication, while the current live revision remains unchanged and publicly visible until the changes have been reviewed and found fit for publication by a moderator.

Code

function revisioning_node_overview($node) {
  return _revisioning_theme_revisions_summary($node);
}