public function FieldHandlerInterface::getRenderTokens in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php \Drupal\views\Plugin\views\field\FieldHandlerInterface::getRenderTokens()
- 10 core/modules/views/src/Plugin/views/field/FieldHandlerInterface.php \Drupal\views\Plugin\views\field\FieldHandlerInterface::getRenderTokens()
Gets the 'render' tokens to use for advanced rendering.
This runs through all of the fields and arguments that are available and gets their values. This will then be used in one giant str_replace().
Parameters
mixed $item: The item to render.
Return value
array An array of available tokens
1 method overrides FieldHandlerInterface::getRenderTokens()
- FieldPluginBase::getRenderTokens in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Gets the 'render' tokens to use for advanced rendering.
File
- core/
modules/ views/ src/ Plugin/ views/ field/ FieldHandlerInterface.php, line 255
Class
- FieldHandlerInterface
- Base field handler that has no options and renders an unformatted field.
Namespace
Drupal\views\Plugin\views\fieldCode
public function getRenderTokens($item);