You are here

function paging_wysiwyg_include_directory in Paging 7

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

Implements hook_wysiwyg_include_directory().

File

./paging.module, line 419
Allows a node to be broken into multiple pages via a tag.

Code

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