function ajaxblocks_in_ajax_handler in Ajax Blocks 6
Same name and namespace in other branches
- 7 ajaxblocks.module \ajaxblocks_in_ajax_handler()
Returns TRUE if current operation is block loading via AJAX. May be used by other modules in hook_block() implementations to decide what version of block to return.
1 call to ajaxblocks_in_ajax_handler()
- ajaxblocks_preprocess_block in ./
ajaxblocks.module - Implements hook_preprocess_block().
File
- ./
ajaxblocks.module, line 491 - Loads dynamic blocks on cached page for anonymous users by performing AJAX request.
Code
function ajaxblocks_in_ajax_handler() {
return _ajaxblocks_in_ajax_handler_impl();
}