block_filter_format_delete

Versions
7
block_filter_format_delete($format, $fallback)

Implements hook_filter_format_delete().

Code

modules/block/block.module, line 893

<?php
function block_filter_format_delete($format, $fallback) {
  db_update('block_custom')
    ->fields(array('format' => $fallback->format))
    ->condition('format', $format->format)
    ->execute();
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.