You are here

function workflow_extensions_block_info in Workflow Extensions 7

Implements hook_block_info().

File

./workflow_extensions.module, line 408
UI-related improvements to the Workflow module and tokens for Rules.

Code

function workflow_extensions_block_info() {
  if (!module_exists('workflow')) {
    return array();
  }
  $block[0]['info'] = t('Workflow state change form');
  return $block;
}