You are here

function flexslider_help in Flex Slider 7.2

Same name and namespace in other branches
  1. 8.2 flexslider.module \flexslider_help()
  2. 7 flexslider.module \flexslider_help()

Implements hook_help().

File

./flexslider.module, line 143
A light-weight, customizable image gallery plugin for Drupal based on jQuery

Code

function flexslider_help($path, $arg) {
  switch ($path) {
    case 'admin/config/media/flexslider/edit/%':
      return '<p>' . t('An <em>option set</em> defines exactly how a flexslider image gallery looks like on your site. ' . 'It is s a combination of <a href="@styles">image styles</a> for the various image sizes and FlexSlider library options.', array(
        '@styles' => url('admin/config/media/image-styles'),
      )) . '<br />' . t('For a full documentation of all options, refer to the official @docs.', array(
        '@docs' => l(t('FlexSlider documentation'), 'http://www.woothemes.com/flexslider/'),
      )) . '</p>';
  }
}