You are here

function node_registration_views_pre_view in Node registration 7

Implements hook_views_pre_view().

File

includes/node_registration.views.inc, line 11
Views hooks, handlers, defaults etc.

Code

function node_registration_views_pre_view(&$view, &$display_id, &$args) {
  if ($view->name == 'node_registrations' && $display_id == 'event' && @$args[0]) {
    $view
      ->set_item($display_id, 'field', 'title', NULL);
  }
}