function quote_wysiwyg_include_directory in Quote 7
Same name and namespace in other branches
- 6.2 quote.module \quote_wysiwyg_include_directory()
Implements hook_wysiwyg_include_directory(). Registers the wysiwyg directory as the one containing the plugin implementation.
Parameters
$type: The type of objects being collected: either 'plugins' or 'editors'.
Return value
A sub-directory of the implementing module that contains the corresponding plugin files. This directory must only contain integration files for Wysiwyg module.
File
- ./
quote.module, line 229 - The quote module provides a filter and appropriate links that allow users to quote nodes and other comments in their own comments.
Code
function quote_wysiwyg_include_directory($type) {
return 'wysiwyg';
}