You are here

function context_views_pre_view in Context 6.3

Same name and namespace in other branches
  1. 7.3 context.core.inc \context_views_pre_view()

Implementation of hook_views_pre_view().

File

./context.core.inc, line 208

Code

function context_views_pre_view($view, $args) {
  if ($plugin = context_get_plugin('condition', 'views')) {
    $plugin
      ->execute($view);
  }
}