You are here

function views_quicksand_help in Views Quicksand 7

Implements hook_help().

File

./views_quicksand.module, line 17
jQuery Plugin that provides a nice animation for filtering or reordering lists of content.

Code

function views_quicksand_help($path, $arg) {
  switch ($path) {
    case 'admin/help#views_quicksand':
      $output = '<p>' . t('The Views Quicksand module is a Views style plugin that ' . 'displays the results in a JQuery Quicksand style.') . '</p>';
      return $output;
  }
}