You are here

function FieldPluginBase::allow_advanced_render in Views (for Drupal 7) 8.3

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::allow_advanced_render()
FieldPluginBase::advanced_render in lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
Render a field using advanced settings.
FieldPluginBase::buildOptionsForm in lib/Drupal/views/Plugin/views/field/FieldPluginBase.php
Default options form that provides the label widget that all fields should have.
1 method overrides FieldPluginBase::allow_advanced_render()
PrerenderList::allow_advanced_render in lib/Drupal/views/Plugin/views/field/PrerenderList.php
Determine if advanced rendering is allowed.

File

lib/Drupal/views/Plugin/views/field/FieldPluginBase.php, line 92
Definition of Drupal\views\Plugin\views\field\FieldPluginBase.

Class

FieldPluginBase
Base field handler that has no options and renders an unformatted field.

Namespace

Drupal\views\Plugin\views\field

Code

function allow_advanced_render() {
  return TRUE;
}