You are here

function maestro_form_approval_example_maestro_interactive_handlers in Maestro 8.2

Same name and namespace in other branches
  1. 3.x modules/examples/maestro_form_approval_example/maestro_form_approval_example.module \maestro_form_approval_example_maestro_interactive_handlers()

Implements hook_maestro_interactive_handlers() for the return of an Array of function names and help text that will be displayed in the edit task form under the handler field.

File

modules/examples/maestro_form_approval_example/maestro_form_approval_example.module, line 19
You need this if you want to simply use MaestroEngine in code calls as we do.

Code

function maestro_form_approval_example_maestro_interactive_handlers() {
  return [
    'maestro_form_approval_example_manager_approval_form' => t('Review Request (identifier: request) - provides an Accept and Reject action buttons.'),
  ];
}