You are here

function hook_jcarousel_skins_alter in jCarousel 8.5

Same name and namespace in other branches
  1. 8.4 jcarousel.api.php \hook_jcarousel_skins_alter()

Alter the jCarousel skin definitions.

Parameters

array $skins: Associative array of skin definitions.

1 invocation of hook_jcarousel_skins_alter()
jCarouselSkinsManager::__construct in src/jCarouselSkinsManager.php
Constructs a new BreakpointManager instance.

File

./jcarousel.api.php, line 19
Hooks provided by the jcarousel module.

Code

function hook_jcarousel_skins_alter(&$skins) {

  // Change weight of the tango skin.
  $skins['tango']['weight'] = 5;
}