hook_filter_format_disable

  1. drupal
    1. 7
Versions
7 hook_filter_format_disable($format)

Perform actions when a text format has been disabled.

Parameters

$format The format object of the format being disabled.

See also

hook_filter_format_insert()

hook_filter_format_update()

Related topics

Code

drupal/modules/filter/filter.api.php, line 318

<?php
function hook_filter_format_disable($format) {
  mymodule_cache_rebuild();
}
?>