You are here

function google_map_field_wysiwyg_include_directory in Google Map Field 7

Implements hook_wysiwyg_include_directory().

File

./google_map_field.module, line 338
This file defines all the necessary hooks and functions to create a Google Map Field field type and also a WYSIWYG editor plugin for inserting maps directly into filtered content.

Code

function google_map_field_wysiwyg_include_directory($type) {
  switch ($type) {
    case 'plugins':
      return 'wysiwyg_plugins';
      break;
  }
}