SourcePreviewInterface.php in Translation Management Tool 8
Namespace
Drupal\tmgmtFile
src/SourcePreviewInterface.phpView source
<?php
namespace Drupal\tmgmt;
/**
* Interface for source plugin controllers they may be previewed.
*
* @package Drupal\tmgmt
*/
interface SourcePreviewInterface {
/**
* Returns preview url if preview is supported.
*
* @param \Drupal\tmgmt\JobItemInterface $job_item
* Job item.
*
* @return \Drupal\Core\Url
* Url object.
*/
public function getPreviewUrl(JobItemInterface $job_item);
}
Interfaces
Name | Description |
---|---|
SourcePreviewInterface | Interface for source plugin controllers they may be previewed. |