public function PluginBase::themeFunctions

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

11 calls to PluginBase::themeFunctions()
DefaultSummary::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/DefaultSummary.php
Render the display in this style.
DisplayPluginBase::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default form for setting options.
DisplayPluginBase::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Render this display.
Mapping::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/style/Mapping.php
Overrides Drupal\views\Plugin\views\style\StylePluginBase::render().
RowPluginBase::render in drupal/core/modules/views/lib/Drupal/views/Plugin/views/row/RowPluginBase.php
Render a row object. This usually passes through to a theme template of some form, but not always.

... See full list

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

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/PluginBase.php, line 178
Definition of Drupal\views\Plugin\views\PluginBase.

Class

PluginBase

Namespace

Drupal\views\Plugin\views

Code

public function themeFunctions() {
  return views_theme_functions($this->definition['theme'], $this->view, $this->view->display_handler->display);
}