function linkit_help in Linkit 7.2
Same name and namespace in other branches
- 8.5 linkit.module \linkit_help()
- 8.4 linkit.module \linkit_help()
Implements hook_help().
File
- ./
linkit.module, line 629 - Main file for linkit module.
Code
function linkit_help($path, $arg) {
switch ($path) {
case 'admin/help#linkit':
$output = file_get_contents(drupal_get_path('module', 'linkit') . '/README.txt');
return nl2br($output);
}
}