public function PluginBase::additionalThemeFunctions

Provide a list of additional theme functions for the theme information page

1 call to PluginBase::additionalThemeFunctions()
DisplayPluginBase::buildOptionsForm in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php
Provide the default form for setting options.

File

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

Class

PluginBase

Namespace

Drupal\views\Plugin\views

Code

public function additionalThemeFunctions() {
  $funcs = array();
  if (!empty($this->definition['additional themes'])) {
    foreach ($this->definition['additional themes'] as $theme => $type) {
      $funcs[] = views_theme_functions($theme, $this->view, $this->view->display_handler->display);
    }
  }
  return $funcs;
}