function _diff_default_cols in Diff 6.2
Same name and namespace in other branches
- 6 diff.module \_diff_default_cols()
- 7.3 diff.pages.inc \_diff_default_cols()
- 7.2 diff.pages.inc \_diff_default_cols()
Helper function to create default 'cols' array for diff table.
2 calls to _diff_default_cols()
- diff_diffs_show in ./
diff.pages.inc - Create output string for a comparison of 'node' between versions 'old_vid' and 'new_vid'.
- diff_node_form_build_preview_changes in ./
diff.module - Callback if 'View changes' is pressed.
File
- ./
diff.pages.inc, line 409 - Menu callbacks for hook_menu().
Code
function _diff_default_cols() {
return array(
array(
array(
'class' => 'diff-marker',
),
array(
'class' => 'diff-content',
),
array(
'class' => 'diff-marker',
),
array(
'class' => 'diff-content',
),
),
);
}