You are here

function revision_deletion_help in Revision Deletion 5

Same name and namespace in other branches
  1. 6 revision_deletion.module \revision_deletion_help()
  2. 7 revision_deletion.module \revision_deletion_help()

Implementation of hook_help().

File

./revision_deletion.module, line 18
Node Revision Deletion, written by Greg Holsclaw

Code

function revision_deletion_help($section) {
  switch ($section) {
    case 'admin/help#revision_deletion':
      return t('This module will greatly speed up the task of deleting old revisions of nodes. The database clutter and space can be quickly reclaimed as this module, on cron runs, will delete aged revisions (never the current revision) of nodes older than a set period of time. Options include frequency of the cron deletion job, and the age of revisions before being deleted. Cron.php must be run to execute.');
    case 'admin/modules#description':
      return t('Delete old revisions of nodes quickly.');
    case 'admin/content/revision_deletion':
    case 'admin/content/revision_deletion/list':
      return t('Using revisions is a good way to improve the integrity of your node content; however it may result in a significant increase in your database size. This page lists the nodes that currently have revisions meeting the deletion criteria and allows you to delete them.');
    case 'admin/content/revision_deletion/settings':
      return t('These settings control which revisions may be deleted, how often, and from which types of content.');
  }
}