4.3. Opl_Debug_Console
4.3.6. addTableItem()
4.3.5. addTableInformation()
« Previous
4.3.7. display()
Next »

4.3.6. addTableItem()

Statusstatic public
Referencevoid Opl_Debug_Console::addTableItem( String $id, Array $columnValues)

Adds a new item to the table $id. The $columnValues array must contain a list of values to be shown in the table columns:

Opl_Debug_Console::addTable('table', 'My debugging table', array(
    '30:#',
    '*:Column 1',
    '25%:Column 2'
));
Opl_Debug_Console::addTableItem('table', array(
    5, 'Text 1', 'Text 2'
));
4.3.6. addTableItem()
4.3. Opl_Debug_Console
« Previous
4.3.5. addTableInformation()
Next »
4.3.7. display()