You are here

function smart_paging_wysiwyg_include_directory in Smart Paging 7.2

Same name and namespace in other branches
  1. 7 smart_paging.module \smart_paging_wysiwyg_include_directory()

Implements hook_paging_wysiwyg_include_directory().

File

./smart_paging.module, line 1583
Provides smart paging capability to Drupal contents.

Code

function smart_paging_wysiwyg_include_directory($type) {
  switch ($type) {
    case 'plugins':

      // You can just return $type, if you place your Wysiwyg plugins into a
      // sub-directory named 'plugins'.
      return 'plugins/wysiwyg';
  }
}