function _ca_conversion_finished in Ubercart 6.2
Batch finalization function to hide the conversion tab.
1 string reference to '_ca_conversion_finished'
File
- ca/
ca.admin.inc, line 1316 - Conditional actions overview UI.
Code
function _ca_conversion_finished() {
// Set a variable to hide the conversion tab.
variable_set('ca_show_conversion_tab', FALSE);
// Display a message and redirect to the overview page.
drupal_set_message('Your Workflow-ng configurations have been converted. Please verify the results in your Conditional Actions predicates below.');
drupal_goto(CA_UI_PATH);
}