You are here

function _xbbcode_list_formats in Extensible BBCode 6

Same name and namespace in other branches
  1. 5 xbbcode-misc.php \_xbbcode_list_formats()

File

./xbbcode.inc, line 66

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;
}