function porterstemmer_help in Porter-Stemmer 5
Same name and namespace in other branches
- 8 porterstemmer.module \porterstemmer_help()
- 6.2 porterstemmer.module \porterstemmer_help()
- 6 porterstemmer.module \porterstemmer_help()
- 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.');
}
}