You are here

protected function InterlaceTrait::arguments in Image Effects 8.2

Same name and namespace in other branches
  1. 8.3 src/Plugin/ImageToolkit/Operation/InterlaceTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\InterlaceTrait::arguments()
  2. 8 src/Plugin/ImageToolkit/Operation/InterlaceTrait.php \Drupal\image_effects\Plugin\ImageToolkit\Operation\InterlaceTrait::arguments()

File

src/Plugin/ImageToolkit/Operation/InterlaceTrait.php, line 13

Class

InterlaceTrait
Base trait for image_effects Interlace operations.

Namespace

Drupal\image_effects\Plugin\ImageToolkit\Operation

Code

protected function arguments() {
  return [
    'type' => [
      'description' => 'The interlace type.',
      'required' => FALSE,
      'default' => 'Plane',
    ],
  ];
}