You are here

function similar_help in Similar Entries 5

Same name and namespace in other branches
  1. 6.2 similar.module \similar_help()
  2. 6 similar.module \similar_help()
  3. 7.2 similar.module \similar_help()
  4. 7 similar.module \similar_help()

Implementation of hook_help().

Parameters

string $section:

File

./similar.module, line 23
Module that shows a block listing similar entries. NOTE: Uses MySQL's FULLTEXT indexing for MyISAM tables.

Code

function similar_help($section = 'admin/help#similar') {
  switch ($section) {
    case 'admin/help#similar':
      return t('<p>Lists the most similar nodes to the current node.</p>');
      break;
  }
}