You are here

function state_flow_content_page in State Machine 7.2

Same name and namespace in other branches
  1. 7.3 modules/state_flow/state_flow.admin.inc \state_flow_content_page()

Menu callback: content administration.

1 string reference to 'state_flow_content_page'
state_flow_menu in modules/state_flow/state_flow.module
Implements hook_menu().

File

modules/state_flow/state_flow.admin.inc, line 96
Revision Content administration.

Code

function state_flow_content_page($form, $form_state) {
  $form['filter'] = state_flow_filter_form();
  $form['#submit'][] = 'state_flow_node_filter_form_submit';
  $form['admin'] = state_flow_admin_nodes();
  return $form;
}