function Text_Diff_Renderer_parallel::_startDiff in Coder 6.2
Same name and namespace in other branches
- 6 scripts/coder_format/tests/CoderTestFile.php \Text_Diff_Renderer_parallel::_startDiff()
- 7.2 scripts/coder_format/tests/CoderTestFile.php \Text_Diff_Renderer_parallel::_startDiff()
- 7 scripts/coder_format/tests/CoderTestFile.php \Text_Diff_Renderer_parallel::_startDiff()
File
- scripts/
coder_format/ tests/ CoderTestFile.php, line 190 - Set of tests for the coder_format script.
Class
- Text_Diff_Renderer_parallel
- Parallel diff renderer for HTML tables with original text on left, new text on right, and changed text highlighted with appropriate classes.
Code
function _startDiff() {
return '<table class="diff"><thead><tr><th colspan="2">' . $this->title . '</th></tr><tr><th>' . $this->original . '</th><th>' . $this->final . '</th></tr></thead><tbody>';
}