function DrupalDiffFormatter::contextLine in Diff 7.2
Same name and namespace in other branches
- 5.2 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 6.2 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 6 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 7.3 DiffEngine.php \DrupalDiffFormatter::contextLine()
Note: you should HTML-escape parameter before calling this.
1 call to DrupalDiffFormatter::contextLine()
File
- ./
DiffEngine.php, line 1155 - 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 contextLine($line) {
return array(
' ',
array(
'data' => theme('diff_content_line', array(
'line' => $line,
)),
'class' => 'diff-context',
),
);
}