| 7 filter.module | filter_format_exists($format_id) |
| 8 filter.module | filter_format_exists($format_id) |
Determines if a text format exists.
Parameters
$format_id: The ID of the text format to check.
Return value
TRUE if the text format exists, FALSE otherwise. Note that for disabled formats filter_format_exists() will return TRUE while filter_format_load() will return FALSE.
See also
1 string reference to 'filter_format_exists'
File
- modules/
filter/ filter.module, line 311 - Framework for handling filtering of content.
Code
function filter_format_exists($format_id) {
return (bool) db_query_range('SELECT 1 FROM {filter_format} WHERE format = :format', 0, 1, array(':format' => $format_id))->fetchField();
}
Login or register to post comments