You are here

function scrolltext_help in ScrollText 5

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

Implementation of hook_help().

File

./scrolltext.module, line 12
This module used for scrolling text from node title

Code

function scrolltext_help($section) {
  switch ($section) {
    case 'admin/help#scrolltext':
    case 'admin/modules#description':
      return "This module used for scrolling text from node title.";
  }
}