You are here

function photoswipe_help in PhotoSwipe 6

Same name and namespace in other branches
  1. 8.2 photoswipe.module \photoswipe_help()
  2. 8 photoswipe.module \photoswipe_help()
  3. 7.2 photoswipe.module \photoswipe_help()
  4. 7 photoswipe.module \photoswipe_help()
  5. 3.x photoswipe.module \photoswipe_help()

Implementation of hook_help().

File

./photoswipe.module, line 15

Code

function photoswipe_help($path, $arg) {
  switch ($path) {

    // Main module help for the photoswipe module
    case 'admin/help#photoswipe':
      return '<p>' . t('PhotoSwipe provides a nice javascript-based display for photo galleries, very sleek on mobile browsers.', array(
        '!website' => l(t('PhotoSwipe website'), 'http://www.photoswipe.com/'),
      )) . '</p>';
  }
}