You are here

function DiffFormatter::_added in Diff 7.2

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \DiffFormatter::_added()
  2. 5 DiffEngine.php \DiffFormatter::_added()
  3. 6.2 DiffEngine.php \DiffFormatter::_added()
  4. 6 DiffEngine.php \DiffFormatter::_added()
  5. 7.3 DiffEngine.php \DiffFormatter::_added()
2 calls to DiffFormatter::_added()
DiffFormatter::_block in ./DiffEngine.php
DiffFormatter::_changed in ./DiffEngine.php
1 method overrides DiffFormatter::_added()
DrupalDiffFormatter::_added in ./DiffEngine.php

File

./DiffEngine.php, line 919
A PHP diff engine for phpwiki. (Taken from phpwiki-1.3.3)

Class

DiffFormatter
A class to format Diffs

Code

function _added($lines) {
  $this
    ->_lines($lines, '>');
}