You are here

function _jcarousel_help_image_list in jCarousel 8.4

Same name and namespace in other branches
  1. 8.5 jcarousel.module \_jcarousel_help_image_list()

Returns demo images.

Return value

array An array of image URLs.

4 calls to _jcarousel_help_image_list()
_jcarousel_help_backward_compatibility in ./jcarousel.module
Backward compatibility hook_help() helper.
_jcarousel_help_simple in ./jcarousel.module
_jcarousel_help_skins in ./jcarousel.module
_jcarousel_help_vertical in ./jcarousel.module

File

./jcarousel.module, line 62
Provides integration with 3rd party modules and the jCarousel library.

Code

function _jcarousel_help_image_list() {
  return [
    'http://sorgalla.com/jcarousel/examples/_shared/img/img1.jpg',
    'http://sorgalla.com/jcarousel/examples/_shared/img/img2.jpg',
    'http://sorgalla.com/jcarousel/examples/_shared/img/img3.jpg',
    'http://sorgalla.com/jcarousel/examples/_shared/img/img4.jpg',
    'http://sorgalla.com/jcarousel/examples/_shared/img/img5.jpg',
    'http://sorgalla.com/jcarousel/examples/_shared/img/img6.jpg',
  ];
}