ajax_wysiwyg.module in Ajax 6
File
plugins/wysiwyg/ajax_wysiwyg.moduleView source
<?php
/**
 * AJAX TinyMce 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_wysiwyg_preprocess_page(&$variables) {
  drupal_add_js(drupal_get_path('module', 'ajax_wysiwyg') . '/ajax_wysiwyg.js', 'theme');
  return TRUE;
}Functions
| 
            Name | 
                  Description | 
|---|---|
| ajax_wysiwyg_preprocess_page | Implementation of hook_preprocess_hook(). |