You are here

function views_jqfx_help in Views jQFX 7

Implements hook_help().

File

./views_jqfx.module, line 31
Provides jQFX style options for Views.

Code

function views_jqfx_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_jqfx':
      if (module_exists('advanced_help')) {
        $output = '<p>' . l(t('Click here to view the documentation for Views jQFX'), 'admin/advanced_help/views_jqfx') . '</p>';
      }
      else {
        $output = '<p>' . t('Views jQFX help can be found by installing and enabling the !help.', array(
          '!advanced_help' => l(t('Advanced Help module', array(), array(
            'langcode' => 'en',
          )), 'http://drupal.org/project/advanced_help'),
        ), array(
          'langcode' => 'en',
        )) . '</p>';
      }
      return $output;
  }
}