public function TextfieldFormatter::viewElements in jEditable inline content editing 8
Builds a renderable array for a field value.
Parameters
\Drupal\Core\Field\FieldItemListInterface $items: The field values to be rendered.
string $langcode: The language that should be used to render the field.
Return value
array A renderable array for $items, as an array of child elements keyed by consecutive numeric indexes starting from 0.
Overrides FormatterInterface::viewElements
File
- src/
Plugin/ Field/ FieldFormatter/ TextfieldFormatter.php, line 40
Class
- TextfieldFormatter
- Plugin implementation of the 'text_default' formatter.
Namespace
Drupal\jeditable\Plugin\Field\FieldFormatterCode
public function viewElements(FieldItemListInterface $items, $langcode) {
$elements = [];
foreach ($items as $delta => $item) {
$id = $item
->getEntity()
->id();
$bundle = $item
->getFieldDefinition()
->getTargetBundle();
$entity_type = $item
->getFieldDefinition()
->getTargetEntityTypeId();
$field_name = $items
->getName();
$widget = $item
->getFieldDefinition()
->getType();
$prefix = '<span id = "' . $entity_type . '-' . $id . '-' . $field_name . '-' . $widget . '-' . $delta . '" class="jeditable jeditable-textfield">';
$elements[$delta] = [
'#type' => 'processed_text',
'#prefix' => $prefix,
'#text' => $item->value,
'#suffix' => '</span>',
'#format' => $item->format,
'#langcode' => $item
->getLangcode(),
'#filter_types_to_skip' => [
'filter_autop',
],
];
$elements[$delta]['#attached']['library'][] = 'jeditable/jeditable.admin';
}
return $elements;
}