function DrupalDiffFormatter::contextLine in Diff 5.2
Same name and namespace in other branches
- 6.2 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 6 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 7.3 DiffEngine.php \DrupalDiffFormatter::contextLine()
- 7.2 DiffEngine.php \DrupalDiffFormatter::contextLine()
Note: you should HTML-escape parameter before calling this.
1 call to DrupalDiffFormatter::contextLine()
File
- ./
DiffEngine.php, line 1107
Class
- DrupalDiffFormatter
- Diff formatter which uses Drupal theme functions. @private @subpackage DifferenceEngine
Code
function contextLine($line) {
return array(
' ',
array(
'data' => theme('diff_content_line', $line),
'class' => 'diff-context',
),
);
}