function diff_available_states in Diff 7.3
The various states that are available.
1 call to diff_available_states()
- diff_diffs_show in ./
diff.pages.inc - Create a comparison for the node between versions 'old_vid' and 'new_vid'.
File
- ./
diff.module, line 56 - Provides functionality to show a diff between two node revisions.
Code
function diff_available_states($entity_type = NULL) {
$states = array(
'raw' => t('Standard'),
'raw_plain' => t('Marked down'),
);
return $states;
}