protected function FieldPluginBase::allowAdvancedRender in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/field/FieldPluginBase.php \Drupal\views\Plugin\views\field\FieldPluginBase::allowAdvancedRender()
Determine if this field can allow advanced rendering.
Fields can set this to FALSE if they do not wish to allow token based rewriting or link-making.
2 calls to FieldPluginBase::allowAdvancedRender()
- FieldPluginBase::advancedRender in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Renders a field using advanced settings.
- FieldPluginBase::buildOptionsForm in core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php - Default options form that provides the label widget that all fields should have.
File
- core/
modules/ views/ src/ Plugin/ views/ field/ FieldPluginBase.php, line 131 - Contains \Drupal\views\Plugin\views\field\FieldPluginBase.
Class
- FieldPluginBase
- Base class for views fields.
Namespace
Drupal\views\Plugin\views\fieldCode
protected function allowAdvancedRender() {
return TRUE;
}