function workflow_edit_page in Workflow 5
Menu callback to edit a workflow's properties.
Parameters
$wid: The ID of the workflow.
Return value
HTML form.
1 string reference to 'workflow_edit_page'
- workflow_menu in ./
workflow.module - Implementation of hook_menu().
File
- ./
workflow.module, line 767
Code
function workflow_edit_page($wid) {
$output = drupal_get_form('workflow_edit_form', $wid);
$output .= workflow_permissions($wid);
return $output;
}