You are here

public function PluginBase::themeFunctions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::themeFunctions()
  2. 10 core/modules/views/src/Plugin/views/PluginBase.php \Drupal\views\Plugin\views\PluginBase::themeFunctions()

Provide a full list of possible theme templates used by this style.

Overrides ViewsPluginInterface::themeFunctions

15 calls to PluginBase::themeFunctions()
DefaultSummary::render in core/modules/views/src/Plugin/views/style/DefaultSummary.php
Render the display in this style.
DisplayPluginBase::render in core/modules/views/src/Plugin/views/display/DisplayPluginBase.php
Renders this display.
Full::render in core/modules/views/src/Plugin/views/pager/Full.php
Return the renderable array of the pager.
Mapping::render in core/modules/views/src/Plugin/views/style/Mapping.php
Overrides Drupal\views\Plugin\views\style\StylePluginBase::render().
Mini::render in core/modules/views/src/Plugin/views/pager/Mini.php
Return the renderable array of the pager.

... See full list

1 method overrides PluginBase::themeFunctions()
FieldPluginBase::themeFunctions in core/modules/views/src/Plugin/views/field/FieldPluginBase.php
Provide a full list of possible theme templates used by this style.

File

core/modules/views/src/Plugin/views/PluginBase.php, line 299

Class

PluginBase
Base class for any views plugin types.

Namespace

Drupal\views\Plugin\views

Code

public function themeFunctions() {
  return $this->view
    ->buildThemeFunctions($this->definition['theme']);
}