You are here

public function SlickSkinTest::arrows in Slick Carousel 7.3

Same name and namespace in other branches
  1. 8 tests/modules/slick_test/src/SlickSkinTest.php \Drupal\slick_test\SlickSkinTest::arrows()

File

tests/modules/slick_test/src/SlickSkinTest.php, line 38

Class

SlickSkinTest
Implements SlickSkinInterface as registered via hook_slick_skins_info().

Namespace

Drupal\slick_test

Code

public function arrows() {
  $path = drupal_get_path('module', 'slick_test');
  $skins = [
    'arrows' => [
      'name' => 'Arrows',
      'description' => t('Test slick arrows.'),
      'provider' => 'slick_test',
      'group' => 'arrows',
      'css' => [
        $path . '/css/slick.theme--arrows.css' => [],
      ],
    ],
  ];
  return $skins;
}