function patterns_help in Patterns 6
Same name and namespace in other branches
- 6.2 patterns.module \patterns_help()
Implementation of hook_help().
File
- ./
patterns.module, line 177 - 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;
}