You are here

function paging_wysiwyg_include_directory in Paging 6

Same name and namespace in other branches
  1. 7 paging.module \paging_wysiwyg_include_directory()

Implementation of hook_wysiwyg_include_directory().

File

./paging.module, line 954
Allows users to use a tag to break up a node into multiple pages.

Code

function paging_wysiwyg_include_directory($type) {
  switch ($type) {
    case 'plugins':
      return 'wysiwyg';
      break;
  }
}