| // +----------------------------------------------------------------------+ // // $Id$ require_once 'Var_Dump/Renderer/Table.php'; /** * A concrete renderer for Var_Dump * * Returns a table-based representation of a variable in XHTML * Extends the 'Table' renderer, with just a predefined set of options, * that are empty by default. You can also directly call the 'Table' renderer * with the corresponding configuration options. * * @package Var_Dump * @category PHP * @author Frederic Poeydomenge */ class Var_Dump_Renderer_XHTML_Table extends Var_Dump_Renderer_Table { /** * Class constructor. * * @param array $options Parameters for the rendering. * @access public */ function Var_Dump_Renderer_XHTML_Table($options = array()) { // See Var_Dump/Renderer/Table.php for the complete list of options $this->defaultOptions = array_merge( $this->defaultOptions, array( 'before_type' => '', 'after_type' => '', 'start_table' => '', 'start_tr_alt' => '', 'start_td_key' => '' ) ); $this->setOptions($options); } } ?>
', 'end_td_key' => '