4.3. Opl_Debug_Console
4.3.4. addTable()
4.3.3. addListOptions()
« Previous
4.3.5. addTableInformation()
Next »

4.3.4. addTable()

Statusstatic public
Referencevoid Opl_Debug_Console::addTable( String $id, String $title, Array $columns )

Creates a new table in the debug console entitled $title. The $id should be an unique key that allows to refer to this table later. $columns must contain a list of table column titles. You may prepend them with the width, for example 50%:Column name. An example:

Opl_Debug_Console::addTable('table', 'My debugging table', array(
    '30:#',
    '*:Column 1',
    '25%:Column 2'
));
4.3.4. addTable()
4.3. Opl_Debug_Console
« Previous
4.3.3. addListOptions()
Next »
4.3.5. addTableInformation()