function FieldPluginBase::theme

Call out to the theme() function, which probably just calls render() but allows sites to override output fairly easily.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/field/FieldPluginBase.php, line 1584
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 theme($values) {
  return theme($this
    ->themeFunctions(), array(
    'view' => $this->view,
    'field' => $this,
    'row' => $values,
  ));
}