You are here

GridStackImageFormatter.php in GridStack 8

Same filename and directory in other branches
  1. 8.2 src/Plugin/Field/FieldFormatter/GridStackImageFormatter.php

File

src/Plugin/Field/FieldFormatter/GridStackImageFormatter.php
View source
<?php

namespace Drupal\gridstack\Plugin\Field\FieldFormatter;


/**
 * Plugin implementation of the 'GridStack Image' formatter.
 *
 * @FieldFormatter(
 *   id = "gridstack_image",
 *   label = @Translation("GridStack Image"),
 *   description = @Translation("Display the images as a GridStack."),
 *   field_types = {"image"},
 *   quickedit = {"editor" = "disabled"}
 * )
 */
class GridStackImageFormatter extends GridStackFileFormatterBase {
  use GridStackFormatterTrait;

}

Classes

Namesort descending Description
GridStackImageFormatter Plugin implementation of the 'GridStack Image' formatter.