function DrupalDiffFormatter::_changed

Overrides DiffFormatter::_changed

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 1206
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

DrupalDiffFormatter
Diff formatter which uses Drupal theme functions. @private @subpackage DifferenceEngine

Code

function _changed($orig, $closing) {
  $diff = new WordLevelDiff($orig, $closing);
  $del = $diff
    ->orig();
  $add = $diff
    ->closing();

  // Notice that WordLevelDiff returns HTML-escaped output.
  // Hence, we will be calling addedLine/deletedLine without HTML-escaping.
  while ($line = array_shift($del)) {
    $aline = array_shift($add);
    $this->rows[] = array_merge($this
      ->deletedLine($line), isset($aline) ? $this
      ->addedLine($aline) : $this
      ->emptyLine());
  }
  foreach ($add as $line) {

    // If any leftovers
    $this->rows[] = array_merge($this
      ->emptyLine(), $this
      ->addedLine($line));
  }
}