Version 1
[yaffs-website] / web / modules / contrib / blazy / src / Plugin / Field / FieldFormatter / BlazyFormatter.php
diff --git a/web/modules/contrib/blazy/src/Plugin/Field/FieldFormatter/BlazyFormatter.php b/web/modules/contrib/blazy/src/Plugin/Field/FieldFormatter/BlazyFormatter.php
new file mode 100644 (file)
index 0000000..6758e4a
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+
+namespace Drupal\blazy\Plugin\Field\FieldFormatter;
+
+/**
+ * Plugin for the Blazy image formatter.
+ *
+ * @FieldFormatter(
+ *   id = "blazy",
+ *   label = @Translation("Blazy"),
+ *   field_types = {"image"}
+ * )
+ */
+class BlazyFormatter extends BlazyFileFormatterBase {
+
+  use BlazyFormatterTrait;
+
+}