function DrupalDiffFormatter::DrupalDiffFormatter

File

drupal/core/lib/Drupal/Component/Diff/DiffEngine.php, line 1098
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 DrupalDiffFormatter() {
  $this->leading_context_lines = variable_get('diff_context_lines_leading', 2);
  $this->trailing_context_lines = variable_get('diff_context_lines_trailing', 2);
}