You are here

function patterns_help in Patterns 6.2

Same name and namespace in other branches
  1. 6 patterns.module \patterns_help()

Implementation of hook_help().

File

./patterns.module, line 183
Enables extremely simple adding/removing features to your site with minimal to no configuration

Code

function patterns_help($section, $arg = NULL) {
  $output = '';
  switch ($section) {
    case 'admin/build/patterns':
      $output = t('Patterns will be looked for in files under the following locations: ') . theme('item_list', patterns_paths());
      break;
  }
  return $output;
}