a3feeb10897bfd77ac67409c5d5b98d82ab8f507
[yaffs-website] / Plugin / Field / FieldFormatter / SlickImageFormatter.php
1 <?php
2
3 namespace Drupal\slick\Plugin\Field\FieldFormatter;
4
5 /**
6  * Plugin implementation of the 'Slick Image' formatter.
7  *
8  * @FieldFormatter(
9  *   id = "slick_image",
10  *   label = @Translation("Slick Image"),
11  *   description = @Translation("Display the images as a Slick carousel."),
12  *   field_types = {"image"},
13  *   quickedit = {"editor" = "disabled"}
14  * )
15  */
16 class SlickImageFormatter extends SlickFileFormatterBase {
17
18   use SlickFormatterTrait;
19
20 }