public function PluginBase::themeFunctions in Drupal 9
Same name and namespace in other branches
- 8 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.
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\viewsCode
public function themeFunctions() {
return $this->view
->buildThemeFunctions($this->definition['theme']);
}