function theme__workflow_fields_settings in Workflow Fields 5
File
- ./
workflow_fields.module, line 367 - This module adds to workflow.module the ability to specify, for each state, which node fields should be visible and/or editable. It is a useful feature when workflows demand that certain information be hidden or read-only to certain roles.
Code
function theme__workflow_fields_settings($form) {
$output = '';
$output .= drupal_render($form);
$output .= '<p class="cvs-version">$Id$</p>';
return $output;
}