ajax_fckeditor.module in Ajax 6
File
plugins/fckeditor/ajax_fckeditor.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_fckeditor_preprocess_page(&$variables) {
drupal_add_js(drupal_get_path('module', 'ajax_fckeditor') . '/ajax_fckeditor.js', 'theme');
return TRUE;
}
Functions
Name | Description |
---|---|
ajax_fckeditor_preprocess_page | Implementation of hook_preprocess_hook(). |