You are here

function commerce_checkout_pane_settings_title in Commerce Core 7

Return the title of a checkout pane settings form page.

Parameters

$checkout_pane: The checkout pane object represented on the settings form.

1 string reference to 'commerce_checkout_pane_settings_title'
commerce_checkout_menu in modules/checkout/commerce_checkout.module
Implements hook_menu().

File

modules/checkout/commerce_checkout.module, line 678
Enable checkout as a multi-step form with customizable pages and a simple checkout pane API.

Code

function commerce_checkout_pane_settings_title($checkout_pane) {
  return t("'!pane' checkout pane", array(
    '!pane' => $checkout_pane['name'],
  ));
}