function views_aggregator_help in Views Aggregator Plus 7
Same name and namespace in other branches
- 8 views_aggregator.module \views_aggregator_help()
Implements hook_help().
File
- ./
views_aggregator.module, line 14
Code
function views_aggregator_help($path, $arg) {
switch ($path) {
case 'admin/help#views_aggregator':
return t('See the <a href="@README">README</a> for View configuration instructions and examples or browse the <a href="@project">project</a> support queue.', array(
'@project' => url('http://drupal.org/project/views_aggregator'),
'@README' => url(drupal_get_path('module', 'views_aggregator') . '/README.txt'),
));
}
}