diff --git a/core/modules/views/views.theme.inc b/core/modules/views/views.theme.inc index 9ab4be0..3cf443f 100644 --- a/core/modules/views/views.theme.inc +++ b/core/modules/views/views.theme.inc @@ -206,39 +206,6 @@ function template_preprocess_views_view_fields(&$variables) { } /** - * Returns HTML for multiple views fields. - * - * @param $variables - * An associative array containing: - * - fields: An array of field objects. Each field object contains: - * - separator: A string that separates the fields. - * - wrapper_suffix: A string added to the beginning of the fields. - * - label_html: An HTML string that labels the fields. - * - content: The fields. - * - wrapper_suffix: A string added to the end of the fields. - * - * @see template_preprocess_views_view_fields() - */ -function theme_views_view_fields($variables) { - $fields = $variables['fields']; - $output = ''; - - foreach ($fields as $field) { - if (!empty($field->separator)) { - $output .= $field->separator; - } - - $output .= $field->wrapper_prefix; - $output .= $field->label_html; - $output .= $field->content; - - $output .= $field->wrapper_suffix; - } - - return $output; -} - -/** * Prepares variables for views single grouping templates. * * Default template: views-view-grouping.html.twig.