You are here

function theme_diff_header_line in Diff 7.2

Same name and namespace in other branches
  1. 5.2 DiffEngine.php \theme_diff_header_line()
  2. 6.2 diff.theme.inc \theme_diff_header_line()
  3. 6 diff.module \theme_diff_header_line()
  4. 7.3 diff.theme.inc \theme_diff_header_line()

Theme function for a header line in the diff.

1 theme call to theme_diff_header_line()
DrupalDiffFormatter::_block_header in ./DiffEngine.php

File

./diff.theme.inc, line 263
Themeable function callbacks for diff.module.

Code

function theme_diff_header_line($vars) {
  return '<strong>' . t('Line %lineno', array(
    '%lineno' => $vars['lineno'],
  )) . '</strong>';
}