In our example we will be creating a customized formatter for email addresses that will allow us to display obfuscated email addresses to fool those nasty spammers.
The formatter will have a some configuration options that will allow us to control how the email address is obfuscated:
Please note that this is just an academic example to show how field formatters are displayed and configured and is obviously not very useful for actual anti-spamming.
This example assumes that you have a module named obfuscator_field_formatter
properly configured and activated.
namespace Drupal\obfuscator_field_formatter\Plugin\Field\FieldFormatter;
use Drupal\Core\Field\FieldDefinitionInterface;
use Drupal\Core\Field\FieldItemInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Field\FormatterBase;
use Drupal\Core\Form\FormStateInterface;
/**
* Plugin implementation of the 'example_field_formatter' formatter.
*
* @FieldFormatter(
* id = "email_obfuscator_field_formatter",
* label = @Translation("Obfuscated Email"),
* field_types = {
* "email"
* }
* )
*/
class ObfuscatorFieldFormatter extends FormatterBase {
private $options = [];
public function __construct($plugin_id, $plugin_definition, FieldDefinitionInterface $field_definition, array $settings, $label, $view_mode, array $third_party_settings) {
parent::__construct($plugin_id, $plugin_definition, $field_definition, $settings, $label, $view_mode, $third_party_settings);
$this->options = [
'remove_chars' => $this->t('Remove @ and . and replace them with a space'),
'replace_chars' => $this->t('Replace @ by at and . by dot'),
];
}
public static function defaultSettings() {
return [
'obfuscator_formatter_type' => '',
] + parent::defaultSettings();
}
public function settingsForm(array $form, FormStateInterface $form_state) {
return [
'obfuscator_formatter_type' => [
'#type' => 'select',
'#title' => $this->t('Obfuscation Type'),
'#options' => $this->options,
'#default_value' => $this->getSetting('obfuscator_formatter_type'),
]
] + parent::settingsForm($form, $form_state);
}
public function settingsSummary() {
$summary = parent::settingsSummary();
$type = $this->getSetting('obfuscator_formatter_type');
if(!is_null($type) && !empty($type)) {
$summary[] = $this->t('Obfuscation: @value', ['@value' => $this->options[$type]]);
}
return $summary;
}
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = [];
foreach ($items as $delta => $item) {
$elements[$delta] = [
'#type' => 'inline_template',
'#template' => '{{ value|nl2br }}',
'#context' => ['value' => $this->viewValue($item)],
];
}
return $elements;
}
protected function viewValue(FieldItemInterface $item) {
$obfuscated = $item->value;
$type = $this->getSetting('obfuscator_formatter_type');
switch($type) {
case 'remove_chars': {
$obfuscated = str_ireplace(['@', '.'], ' ', $item->value);
break;
}
case 'replace_chars': {
$obfuscated = str_ireplace(['@', '.'], [' AT ', ' DOT '], $item->value);
break;
}
}
return $obfuscated;
}
}