function _wysiwyg_spellcheck_path in Wysiwyg SpellCheck 6
Same name and namespace in other branches
- 7 wysiwyg_spellcheck.module \_wysiwyg_spellcheck_path()
3 calls to _wysiwyg_spellcheck_path()
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;
}