You are here

function _diff_default_cols in Diff 7.3

Same name and namespace in other branches
  1. 6.2 diff.pages.inc \_diff_default_cols()
  2. 6 diff.module \_diff_default_cols()
  3. 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 a comparison for the node between versions 'old_vid' and 'new_vid'.
diff_node_form_build_preview_changes in ./diff.module
Submit handler for the 'View changes' action.

File

./diff.pages.inc, line 609
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',
      ),
    ),
  );
}