You are here

function flexslider_help in Flex Slider 7

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

Implements hook_help().

File

./flexslider.module, line 148
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 Flex Slider library options.', array(
        '@styles' => url('admin/config/media/image-styles'),
      )) . '<br />' . t('For a full documentation of all options, refer to the official <a href="@docs">Flex Slider documentation</a>.', array(
        '@docs' => url('http://flex.madebymufffin.com/'),
      )) . '</p>';
  }
}