You are here

public function SlickSkinTest::dots in Slick Carousel 8

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

File

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

Class

SlickSkinTest
Implements SlickSkinInterface as registered via hook_slick_skins_info().

Namespace

Drupal\slick_test

Code

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