function state_flow_events in State Machine 7
Same name and namespace in other branches
- 6 modules/state_flow/state_flow.module \state_flow_events()
- 7.3 modules/state_flow/state_flow.pages.inc \state_flow_events()
- 7.2 modules/state_flow/state_flow.pages.inc \state_flow_events()
Page callback for a node's Workflow page.
1 string reference to 'state_flow_events'
- state_flow_menu in modules/
state_flow/ state_flow.module - Implements hook_menu().
File
- modules/
state_flow/ state_flow.pages.inc, line 6
Code
function state_flow_events($node) {
// Gather information on the current published revision
$state_flow = state_flow_load_state_machine($node);
$events = $state_flow
->get_available_events();
$current_revision_actions = array();
foreach ($events as $event) {
if (state_flow_access($node, $event)) {
$current_revision_actions[] = l(drupal_ucfirst(t($event)), 'node/' . $node->nid . '/revisions/' . $node->vid . '/workflow/' . $event);
}
}
$current_revision_actions_str = implode(' | ', $current_revision_actions);
// Build table for the active draft revisions and other revisions of this node
$drafts_table = array(
'header' => array(
t('ID'),
t('Title'),
t('Status'),
t('Last Updated'),
t('Actions'),
),
'rows' => array(),
);
$others_table = array(
'header' => array(
t('ID'),
t('Title'),
t('Status'),
t('Last Updated'),
t('Actions'),
),
'rows' => array(),
);
$states = state_flow_get_revisions($node->nid);
foreach ($states as $state) {
if (empty($state->state)) {
continue;
}
$vid = intval($state->vid);
$path_view = $vid == $node->vid ? 'node/' . $node->nid : 'node/' . $node->nid . '/revisions/' . $vid . '/view';
$state_date_str = format_date($state->timestamp, 'short');
if ($state->status && !($state->state === 'published' && $vid == $node->vid) || !$state->status && $vid != $node->vid) {
$state_node = node_load($node->nid, $vid);
$state_state_flow = state_flow_load_state_machine($state_node);
$state_events = $state_state_flow
->get_available_events();
$state_actions = array();
if (node_access('update', $state_node)) {
$state_actions[] = l(t('Edit'), 'node/' . $node->nid . '/revisions/' . $vid . '/edit');
}
if (_node_revision_access($state_node, 'delete')) {
$state_actions[] = l(t('Delete'), 'node/' . $node->nid . '/revisions/' . $vid . '/delete');
}
foreach ($state_events as $event) {
if (state_flow_access($state_node, $event)) {
$state_actions[] = l(drupal_ucfirst(t($event)), 'node/' . $node->nid . '/revisions/' . $vid . '/workflow/' . $event) . ' ';
}
}
$state_actions_str = implode(' | ', $state_actions);
$item = array(
l($vid, $path_view),
l(check_plain($state_node->title), $path_view),
t($state->state),
$state_date_str,
$state_actions_str,
);
if ($state->status) {
$drafts_table['rows'][] = $item;
}
else {
$others_table['rows'][] = $item;
}
}
}
// Build a table for the history of this node
$history_table = array(
'header' => array(
t('Date'),
t('Message'),
),
'rows' => array(),
);
$history = state_flow_get_history($node->nid);
foreach ($history as $state) {
$vid = intval($state->vid);
$path_view = $vid == $node->vid ? 'node/' . $node->nid : 'node/' . $node->nid . '/revisions/' . $vid . '/view';
$state_date_str = format_date($state->timestamp, 'short');
$history_str = '';
$history_str = t('!user transitioned revision !vid-link to %state.', array(
'!user' => l(check_plain($state->user_name), 'user/' . $state->uid),
'!vid-link' => l($vid, $path_view),
'%state' => $state->state,
));
if (!empty($state->log)) {
$history_str .= '<br/>' . t('@user said: @log', array(
'@user' => $state->user_name,
'@log' => $state->log,
));
}
$history_table['rows'][] = array(
$state_date_str,
$history_str,
);
}
// Set the title for this page
drupal_set_title(t('Workflow for %title', array(
'%title' => $node->title,
)), PASS_THROUGH);
// Build the render array
$output = array(
'#theme' => 'page',
'#type' => 'page',
'content' => array(
'current_revision' => array(
'#type' => 'fieldset',
'#title' => t('Current Revision'),
'current_revision_status' => array(
'#type' => 'item',
'#title' => t('Status'),
'#markup' => check_plain($state_flow
->get_current_state()),
),
'current_revision_vid' => array(
'#type' => 'item',
'#title' => t('Revision'),
'#markup' => l(check_plain($node->vid), 'node/' . $node->nid),
),
),
'#sorted' => TRUE,
),
);
if (!empty($current_revision_actions_str)) {
$output['content']['current_revision']['current_revision_actions'] = array(
'#type' => 'item',
'#title' => t('Actions'),
'#markup' => $current_revision_actions_str,
);
}
if (count($drafts_table['rows'])) {
$output['content']['draft_revisions'] = array(
'#type' => 'fieldset',
'#title' => t('Drafts'),
'draft_revisions_table' => array(
'#markup' => theme('table', $drafts_table),
),
);
}
if (count($others_table['rows'])) {
$output['content']['other_revisions'] = array(
'#type' => 'fieldset',
'#title' => t('Other Revisions'),
'other_revisions_table' => array(
'#markup' => theme('table', $others_table),
),
);
}
if (count($history_table['rows'])) {
$output['content']['history'] = array(
'#type' => 'fieldset',
'#title' => t('History'),
'history_table' => array(
'#markup' => theme('table', $history_table),
),
);
}
return $output;
}