You are here

public function FractionTarget::getSummary in Fraction 2.x

Same name and namespace in other branches
  1. 8 src/Feeds/Target/FractionTarget.php \Drupal\fraction\Feeds\Target\FractionTarget::getSummary()

File

src/Feeds/Target/FractionTarget.php, line 59

Class

FractionTarget
Defines a fraction field mapper.

Namespace

Drupal\fraction\Feeds\Target

Code

public function getSummary() {
  $types = $this
    ->importTypes();
  return $this
    ->t('Import type: %type', [
    '%type' => $types[$this->configuration['type']],
  ]);
}