function readmorecontrol_help in Read More Control 7
Implements hook_help().
File
- ./
readmorecontrol.module, line 11 - Defines options to control how the Read more link is displayed on teasers.
Code
function readmorecontrol_help($path, $arg) {
switch ($path) {
case 'admin/help#readmorecontrol':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Read More Control module can add and control the read more link in many different content types, including nodes, terms and even users.') . '</p>';
return $output;
}
}