filter_resolve_format

Definition

filter_resolve_format($format)
modules/filter/filter.module, line 689

Description

Resolve a format id, including the default format.

Code

<?php
function filter_resolve_format($format) {
  return $format == FILTER_FORMAT_DEFAULT ? variable_get('filter_default_format', 1) : $format;
}
?>
 
 

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.