You are here

protected static function GeneralEntityReferenceFormatter::getOpenLinkInValues in Formatter Suite 8

Returns an array of choices for how to open a link.

Return value

string[] Returns an associative array with internal names as keys and human-readable translated names as values.

2 calls to GeneralEntityReferenceFormatter::getOpenLinkInValues()
GeneralEntityReferenceFormatter::sanitizeSettings in src/Plugin/Field/FieldFormatter/GeneralEntityReferenceFormatter.php
Sanitize settings to insure that they are safe and valid.
GeneralEntityReferenceFormatter::settingsForm in src/Plugin/Field/FieldFormatter/GeneralEntityReferenceFormatter.php
Returns a form to configure settings for the formatter.

File

src/Plugin/Field/FieldFormatter/GeneralEntityReferenceFormatter.php, line 420

Class

GeneralEntityReferenceFormatter
Formats an entity reference as one or more links.

Namespace

Drupal\formatter_suite\Plugin\Field\FieldFormatter

Code

protected static function getOpenLinkInValues() {
  return [
    '_self' => t('Open linked entity in the same tab/window'),
    '_blank' => t('Open linked entity in a new tab/window'),
    'download' => t('Download the linked entity'),
  ];
}