You are here

public function EntityReference::getFeedsItemOptions in Feeds 8.3

Returns options for feeds_item configuration.

2 calls to EntityReference::getFeedsItemOptions()
EntityReference::buildConfigurationForm in src/Feeds/Target/EntityReference.php
Form constructor.
EntityReference::getSummary in src/Feeds/Target/EntityReference.php
Returns the summary for a target.

File

src/Feeds/Target/EntityReference.php, line 377

Class

EntityReference
Defines an entity reference mapper.

Namespace

Drupal\feeds\Feeds\Target

Code

public function getFeedsItemOptions() {
  return [
    'guid' => $this
      ->t('Item GUID'),
  ];
}