You are here

SvgEmbedProcessInterface.php in SVG Embed 2.0.x

Same filename and directory in other branches
  1. 8 src/SvgEmbedProcessInterface.php

Namespace

Drupal\svg_embed

File

src/SvgEmbedProcessInterface.php
View source
<?php

namespace Drupal\svg_embed;


/**
 * Interface SvgEmbedProcessInterface.
 *
 * @package Drupal\svg_embed
 */
interface SvgEmbedProcessInterface {

  /**
   * @param string $uuid
   * @param string $langcode
   * @return string
   */
  public function translate($uuid, $langcode) : string;

}

Interfaces

Namesort descending Description
SvgEmbedProcessInterface Interface SvgEmbedProcessInterface.