function nivo_slider_help in Nivo Slider 8
Same name and namespace in other branches
- 7 nivo_slider.module \nivo_slider_help()
Implements hook_help().
File
- ./
nivo_slider.module, line 16 - Primarily Drupal hooks.
Code
function nivo_slider_help($route_name, RouteMatchInterface $arg) {
switch ($route_name) {
case 'help.page.nivo_slider':
$output = '';
$output .= '<p>' . t('<a href="@project_page">Nivo Slider</a> provides an easy and eye-catching way to showcase featured content.', [
'@project_page' => 'http://drupal.org/project/nivo_slider',
]) . '</p>';
$output .= '<h2>' . t('Usage') . '</h2>';
$output .= '<p>' . t('Nivo Slider provides a block which will determine where the slider is placed. Administrators or users with the Administer Nivo Slider permission will be able to configure slider settings by visiting the <a href="nivo_slider">Nivo Slider</a> administration page.', [
'@nivo_slider' => url('admin/structure/nivo-slider'),
]) . '</p>';
$output .= '<h2>' . t('Configuration') . '</h2>';
$output .= '<p>' . t('Nivo Slider provides two configuration pages: slides and options.') . '</p>';
$output .= '<h3>' . t('Slides') . '</h3>';
$output .= '<p>' . t('The <a href="@slides">slides</a> page provides an interface for managing the content of the slider. Slider content can be given a title or description, made into a link, reordered or restricted to displaying on a specific path.', [
'@slides' => url('admin/structure/nivo-slider'),
]) . '</p>';
$output .= '<h3>' . t('Options') . '</h3>';
$output .= '<p>' . t('The <a href="@options">options</a> page provides an interface for configuring the slider. Slider options include general options, transitions and navigation.', [
'@options' => url('admin/structure/nivo-slider/options'),
]) . '</p>';
return $output;
case 'admin/structure/nivo-slider':
$output = '';
$output .= '<p>' . t('Configure slider content.') . '</p>';
return $output;
case 'admin/structure/nivo-slider/slides':
$output = '';
$output .= '<p>' . t('Configure slider content.') . '</p>';
return $output;
case 'admin/structure/nivo-slider/options':
$output = '';
$output .= '<p>' . t('Configure slider options.') . '</p>';
return $output;
}
}