You are here

function _wysiwyg_spellcheck_path in Wysiwyg SpellCheck 6

Same name and namespace in other branches
  1. 7 wysiwyg_spellcheck.module \_wysiwyg_spellcheck_path()
3 calls to _wysiwyg_spellcheck_path()
wysiwyg_spellcheck_wysiwyg_plugin in ./wysiwyg_spellcheck.module
Implementation of hook_wysiwyg_plugin().
_wysiwyg_spellcheck_requirements_ckeditor in ./wysiwyg_spellcheck.install
_wysiwyg_spellcheck_requirements_tinymce in ./wysiwyg_spellcheck.install

File

./wysiwyg_spellcheck.module, line 27
wysiwyg_spellcheck is a plugin for wysiwyg editors

Code

function _wysiwyg_spellcheck_path($editor) {

  // Default will be used if there is no such variable yet.
  $path = variable_get('wysiwyg_spellcheck_' . $editor . '_spellchecker_location', _wysiwyg_spellcheck_default_path($editor));
  return $path;
}