function tripal_views_views_post_render

1.x tripal_views.views.inc tripal_views_views_post_render(&$view, &$output, &$cache)

Implementation of hook_views_post_render().

File

tripal_views/tripal_views.views.inc, line 712
Tripal Views Integration

Code

function tripal_views_views_post_render(&$view, &$output, &$cache) {
  // if the base table and the query is completed we want to set
  // the search path back to the default.
  $desc = tripal_core_get_chado_table_schema($view->base_table);
  if ($desc) {
    tripal_db_set_default_search_path();
  }
}