You are here

function DrupalDiffFormatter::_context in Diff 7.2

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \DrupalDiffFormatter::_context()
  2. 6.2 DiffEngine.php \DrupalDiffFormatter::_context()
  3. 6 DiffEngine.php \DrupalDiffFormatter::_context()
  4. 7.3 DiffEngine.php \DrupalDiffFormatter::_context()

Overrides DiffFormatter::_context

File

./DiffEngine.php, line 1184
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 _context($lines) {
  foreach ($lines as $line) {
    $this->rows[] = array_merge($this
      ->contextLine(check_plain($line)), $this
      ->contextLine(check_plain($line)));
  }
}