You are here

function ca_conversion_form in Ubercart 6.2

Landing page for converting Workflow-ng configurations.

From this page, the user can begin the batch processing of any Workflow-ng configurations in the site's database into Conditional Actions predicates.

See also

ca_conversion_form_submit()

1 string reference to 'ca_conversion_form'
ca_menu in ca/ca.module
Implements hook_menu().

File

ca/ca.admin.inc, line 1068
Conditional actions overview UI.

Code

function ca_conversion_form() {
  $form = array();
  $form['help'] = array(
    '#value' => '<div>' . t('Use this form during the update process from Ubercart 1.0 to 2.0 to convert your Workflow-ng configurations to Conditional Actions predicates.  Once your configurations are converted, you should complete your uninstallation of Workflow-ng.') . '</div>',
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Convert configurations'),
  );
  return $form;
}