function scald_index_help in scald_index 7
Implements hook_help().
File
- ./
scald_index.module, line 12
Code
function scald_index_help($path, $arg) {
$result = '';
switch ($path) {
case 'admin/help#scald_index':
$result = '<p>' . t("This module maintains an index of atoms referenced in nodes for both atoms referenced through an atom reference field and through SAS tokens within a node's body field markup. Navigate to Structure > Scald > Atoms index to get an overview of all atoms with their node references.") . '</p>';
break;
}
return $result;
}