You are here

function diff_block_info in Diff 7.3

Same name and namespace in other branches
  1. 7.2 diff.module \diff_block_info()

Implements hook_block_info().

File

./diff.module, line 290
Provides functionality to show a diff between two node revisions.

Code

function diff_block_info() {
  return array(
    'inline' => array(
      'info' => t('Inline differences'),
    ),
  );
}