You are here

function ajax_facets_ajax_deliver in Ajax facets 7

Same name and namespace in other branches
  1. 7.2 ajax_facets.module \ajax_facets_ajax_deliver()

Delivery callback for Ajax results of facet filtering.

1 string reference to 'ajax_facets_ajax_deliver'
ajax_facets_menu in ./ajax_facets.module
Implements hook_menu().

File

./ajax_facets.module, line 157
Ajax facets implementation.

Code

function ajax_facets_ajax_deliver($page_callback_result) {

  // Just print results in Json.
  print drupal_json_output($page_callback_result);

  // Perform end-of-request tasks.
  ajax_footer();
}