function WordLevelDiff::orig in Diff 7.2
Same name and namespace in other branches
- 5.2 DiffEngine.php \WordLevelDiff::orig()
- 5 DiffEngine.php \WordLevelDiff::orig()
- 6.2 DiffEngine.php \WordLevelDiff::orig()
- 6 DiffEngine.php \WordLevelDiff::orig()
- 7.3 DiffEngine.php \WordLevelDiff::orig()
Get the original set of lines.
This reconstructs the $from_lines parameter passed to the constructor.
Return value
array The original sequence of strings.
Overrides Diff::orig
File
- ./
DiffEngine.php, line 1048 - A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)
Class
- WordLevelDiff
- @todo document @private @subpackage DifferenceEngine
Code
function orig() {
$orig = new _HWLDF_WordAccumulator();
foreach ($this->edits as $edit) {
if ($edit->type == 'copy') {
$orig
->addWords($edit->orig);
}
elseif ($edit->orig) {
$orig
->addWords($edit->orig, 'mark');
}
}
$lines = $orig
->getLines();
return $lines;
}