You are here

function ajax_disable_redirect_preprocess_page in Ajax 6

Implementation of hook_preprocess_hook().

Parameters

variables Assoc:

Return value

Bool

File

plugins/disable_redirect/ajax_disable_redirect.module, line 20

Code

function ajax_disable_redirect_preprocess_page(&$variables) {
  drupal_add_js(drupal_get_path('module', 'ajax_disable_redirect') . '/ajax_disable_redirect.js', 'theme');
  return TRUE;
}