You are here

function quote_wysiwyg_include_directory in Quote 6.2

Same name and namespace in other branches
  1. 7 quote.module \quote_wysiwyg_include_directory()

Register a directory containing Wysiwyg plugins.

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 191
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';
}