function taxonomy_edge_help in Taxonomy Edge 7
Same name and namespace in other branches
- 8 taxonomy_edge.module \taxonomy_edge_help()
- 6 taxonomy_edge.module \taxonomy_edge_help()
- 7.2 taxonomy_edge.module \taxonomy_edge_help()
Implements hook_help().
File
- ./
taxonomy_edge.module, line 63 - Optimization of taxonomy data model for SQL performance.
Code
function taxonomy_edge_help($section) {
switch ($section) {
case 'admin/help#taxonomy_edge':
// Return a line-break version of the module README.txt
return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
}
}