You are here

function profile2_diff_help in Profile 2 7.2

Implements hook_help().

File

contrib/profile2_diff.module, line 11
Provides functionality to show a diff between two profile2 revisions.

Code

function profile2_diff_help($path, $arg) {
  switch ($path) {
    case 'admin/help#profile2_diff':
      $output = '<p>' . t('The Profile2-diff module replaces the profile2 <em>Revisions</em> tab. It enhances the listing of revisions with an option to view the differences between any two profile revisions. Access to this feature is controlled with the <em>View profile revisions</em> permission. It also provides an optional <em>View changes</em> button while editing a profile.') . '</p>';
      return $output;
  }
}