You are here

function _xbbcode_list_formats in Extensible BBCode 5

Same name and namespace in other branches
  1. 6 xbbcode.inc \_xbbcode_list_formats()
2 calls to _xbbcode_list_formats()
xbbcode_menu in ./xbbcode.module
xbbcode_settings_handlers in ./xbbcode-settings.php

File

./xbbcode-misc.php, line 55

Code

function _xbbcode_list_formats() {
  $res = db_query("SELECT {filters}.format, name FROM {filters} NATURAL JOIN {filter_formats} " . "WHERE module = 'xbbcode'");
  $formats = array();
  while ($row = db_fetch_array($res)) {
    $formats[$row['format']] = $row['name'];
  }
  return $formats;
}