You are here

function xbbcode_list_styles in Extensible BBCode 6

1 call to xbbcode_list_styles()
xbbcode_list_render in xbbcode_list/xbbcode_list.module

File

xbbcode_list/xbbcode_list.module, line 120

Code

function xbbcode_list_styles() {
  static $styles;
  $styles['ol']['hierarchy'] = preg_split('/ *, */', variable_get('xbbcode_list_ol_hierarchy', 'numeric, lower-alpha, lower-roman'));
  $styles['ol']['sectioned'] = array(
    'sectioned',
  );
  $styles['ol']['default'] = $styles['ol'][variable_get('xbbcode_list_ol_default', 'hierarchy')];
  return $styles;
}