You are here

function porterstemmer_help in Porter-Stemmer 6

Same name and namespace in other branches
  1. 8 porterstemmer.module \porterstemmer_help()
  2. 5 porterstemmer.module \porterstemmer_help()
  3. 6.2 porterstemmer.module \porterstemmer_help()
  4. 7 porterstemmer.module \porterstemmer_help()

Implementation of hook_help().

File

./porterstemmer.module, line 33

Code

function porterstemmer_help($section = 'admin/help#search') {
  switch ($section) {
    case 'admin/modules#description':
      return t('Implements the Porter-Stemmer algorithm to improve English searching.');
  }
}