function views_accelerator_help in Views Accelerator 7
Implements hook_help().
File
- ./
views_accelerator.module, line 368 - Views Accelerator module.
Code
function views_accelerator_help($path, $arg) {
switch ($path) {
case 'admin/help#views_accelerator':
$t = t('Configuration and instructions for use are in this <a target="readme" href="@url_readme">README</a> file.<br/>Known issues and solutions may be found on the <a taget="project" href="@url_views_accelerator">Views Accelerator</a> project page.', array(
'@url_readme' => url(drupal_get_path('module', 'views_accelerator') . '/README.txt'),
'@url_views_accelerator' => url('http://drupal.org/project/views_accelerator'),
));
break;
}
return empty($t) ? '' : '<p>' . $t . '</p>';
}