You are here

function wysiwyg_linebreaks_wysiwyg_include_directory in Wysiwyg Linebreaks 7

Same name and namespace in other branches
  1. 6 wysiwyg_linebreaks.module \wysiwyg_linebreaks_wysiwyg_include_directory()

Implements hook_wysiwyg_include_directory().

File

./wysiwyg_linebreaks.module, line 13
Module adds a Wywisyg API plugin that converts p and br tags to linebreaks, and vice-versa.

Code

function wysiwyg_linebreaks_wysiwyg_include_directory($type) {
  switch ($type) {
    case 'plugins':
      return $type;
  }
}