function theme_diff_content_line in Diff 5.2
Same name and namespace in other branches
- 6.2 diff.theme.inc \theme_diff_content_line()
- 6 diff.module \theme_diff_content_line()
- 7.3 diff.theme.inc \theme_diff_content_line()
- 7.2 diff.theme.inc \theme_diff_content_line()
3 theme calls to theme_diff_content_line()
- DrupalDiffFormatter::addedLine in ./
DiffEngine.php - Note: you should HTML-escape parameter before calling this.
- DrupalDiffFormatter::contextLine in ./
DiffEngine.php - Note: you should HTML-escape parameter before calling this.
- DrupalDiffFormatter::deletedLine in ./
DiffEngine.php - Note: you should HTML-escape parameter before calling this.
File
- ./
DiffEngine.php, line 1164
Code
function theme_diff_content_line($line) {
return '<div>' . $line . '</div>';
}