You are here

function photobox_library in PhotoboxPhotobox 7

Implements hook_library().

File

./photobox.module, line 313
Main file for the Photobox module.

Code

function photobox_library() {
  $libraries['photobox'] = array(
    'title' => 'Photobox',
    'website' => 'http://dropthebit.com/500/photobox-css3-image-gallery-jquery-plugin/',
    'version' => _photobox_library_version(),
    'js' => array(
      _photobox_library_path_js() => array(),
    ),
    'css' => array(
      _photobox_library_path() . '/photobox.css' => array(
        'type' => 'file',
      ),
    ),
  );
  return $libraries;
}