You are here

function wysiwyg_profile_cache_clear in Wysiwyg 6.2

Same name and namespace in other branches
  1. 7.2 wysiwyg.module \wysiwyg_profile_cache_clear()

Clear all Wysiwyg profile caches.

3 calls to wysiwyg_profile_cache_clear()
wysiwyg_profile_delete in ./wysiwyg.module
Remove a profile from the database.
wysiwyg_profile_form_submit in ./wysiwyg.admin.inc
Submit callback for Wysiwyg profile form.
wysiwyg_profile_overview in ./wysiwyg.admin.inc
Display overview of setup Wysiwyg Editor profiles; menu callback.

File

./wysiwyg.module, line 851
Integrates client-side editors with Drupal.

Code

function wysiwyg_profile_cache_clear() {
  wysiwyg_profile_load(-1, TRUE);
  wysiwyg_profile_load_all(TRUE);
}