You are here

ajax_thickbox.module in Ajax 6

File

plugins/thickbox/ajax_thickbox.module
View source
<?php

/**
 * AJAX Thickbox Plugin
 *
 * @see http://drupal.org/project/ajax
 * @see irc://freenode.net/#drupy
 * @depends Drupal 6
 * @author brendoncrawford
 * @note This file uses a 79 character width limit.
 *
 */

/**
 * Implementation of hook_preprocess_hook().
 *
 * @param variables Assoc
 * @return Bool
 *
 */
function ajax_thickbox_preprocess_page(&$variables) {
  drupal_add_js(drupal_get_path('module', 'ajax_thickbox') . '/ajax_thickbox.js', 'theme');
  return TRUE;
}

Functions

Namesort descending Description
ajax_thickbox_preprocess_page Implementation of hook_preprocess_hook().