You are here

views_attach.theme.inc in Views attach 6

Same filename and directory in other branches
  1. 6.2 views_attach.theme.inc
  2. 7.2 views_attach.theme.inc

File

views_attach.theme.inc
View source
<?php

function template_preprocess_views_attach_node_content_view(&$vars) {
  template_preprocess_views_view($vars);
  $view = $vars['view'];
  $display = $view->display_handler;
  if ($display
    ->get_option('show_title')) {
    $vars['title'] = filter_xss_admin($view
      ->get_title());
  }
}