1 views_handler_field.inc | views_handler_field::theme_functions() |
File
- core/
modules/ views/ handlers/ views_handler_field.inc, line 1589 - @todo.
Class
- views_handler_field
- Base field handler that has no options and renders an unformatted field.
Code
function theme_functions() {
$themes = array();
$hook = 'views_view_field';
$display = $this->view->display[$this->view->current_display];
if (!empty($display)) {
$themes[] = $hook . '__' . $this->view->name . '__' . $display->display_plugin . '__' . $this->options['id'];
}
$themes[] = $hook . '__' . $this->view->name . '__' . $this->options['id'];
$themes[] = $hook . '__' . $this->view->name;
$themes[] = $hook . '__' . $this->options['id'];
$themes[] = $hook;
return $themes;
}