You are here

function xbbcode_table_xbbcode in Extensible BBCode 6

Same name and namespace in other branches
  1. 5 xbbcode_table/xbbcode_table.module \xbbcode_table_xbbcode()

File

xbbcode_table/xbbcode_table.module, line 38

Code

function xbbcode_table_xbbcode($op = 'list', $delta = '', $tag = NULL) {
  switch ($op) {
    case 'list':
      return array(
        'table',
      );
    case 'info':
      return array(
        'dynamic' => TRUE,
      );
    case 'render':
      return xbbcode_table_render($tag->option, $tag->content);
  }
}