function tablefield_help in TableField 7.3
Same name and namespace in other branches
- 7.2 tablefield.module \tablefield_help()
Implements hook_help().
File
- ./
tablefield.module, line 14 - Provides a set of fields that can be used to store tabular data with a node.
Code
function tablefield_help($path, $arg) {
switch ($path) {
case 'admin/help#tablefield':
// Return a line-break version of the README.txt.
return _filter_autop(file_get_contents(dirname(__FILE__) . '/README.txt'));
}
}