Skip to content

dokuwiki api tables

LarsGit223 edited this page Jun 30, 2016 · 10 revisions

This section describes creation of tables.

Simple table functions

These are the basic table functions with a predefined style. These are also called for basic DokuWiki rendering and therefore the function declarations need to match the class Doku_Renderer.

table_open($maxcols = NULL, $numrows = NULL, $pos = NULL)

The function opens a table. $maxcols specifies the number of columns. Parameters $numrows and $pos are unused.

table_close($pos = NULL)

The function closes a table. Parameter $pos is unused.


tablerow_open()

The function opens a new table row.

tablerow_close()

The function closes a table row.


Clone this wiki locally