commerce_customer.checkout_pane.inc in Commerce Core 7
Checkout pane callback functions for the customer module.
File
modules/customer/includes/commerce_customer.checkout_pane.incView source
<?php
/**
* @file
* Checkout pane callback functions for the customer module.
*/
/**
* Checkout pane callback: returns the customer profile pane's settings form.
*/
function commerce_customer_profile_pane_settings_form($checkout_pane) {
$form = array();
// Extract the type of profile represented by this pane from its ID.
$type = substr($checkout_pane['pane_id'], 17);
// Removes 'customer_profile_'
// Build an options array of customer profile reference fields available for
// the data from this customer profile pane.
$options = array();
foreach (commerce_info_fields('commerce_customer_profile_reference', 'commerce_order') as $name => $field) {
if ($type == $field['settings']['profile_type']) {
$instance = field_info_instance('commerce_order', $name, 'commerce_order');
$translated_instance = commerce_i18n_object('field_instance', $instance);
$options[$name] = $translated_instance['label'];
}
}
$form['commerce_' . $checkout_pane['pane_id'] . '_field'] = array(
'#type' => 'select',
'#title' => t('Related customer profile reference field'),
'#description' => t('Specify the customer profile reference field on the order to populate with profile data from this checkout pane.'),
'#options' => $options,
'#empty_value' => '',
'#default_value' => variable_get('commerce_' . $checkout_pane['pane_id'] . '_field', ''),
'#required' => TRUE,
);
// Provide the option to copy values from other profile types if they exist.
$profile_types = commerce_customer_profile_type_options_list();
unset($profile_types[$type]);
if (count($profile_types)) {
$form['commerce_' . $checkout_pane['pane_id'] . '_profile_copy'] = array(
'#type' => 'checkbox',
'#title' => t('Enable profile copying on this checkout pane, helping customers avoid having to enter the same address twice.'),
'#default_value' => variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy', FALSE),
);
$form['commerce_' . $checkout_pane['pane_id'] . '_profile_copy_wrapper'] = array(
'#type' => 'fieldset',
'#title' => t('Profile copy options'),
'#states' => array(
'visible' => array(
':input[name="commerce_' . $checkout_pane['pane_id'] . '_profile_copy"]' => array(
'checked' => TRUE,
),
),
),
);
$form['commerce_' . $checkout_pane['pane_id'] . '_profile_copy_wrapper']['commerce_' . $checkout_pane['pane_id'] . '_profile_copy_source'] = array(
'#type' => 'select',
'#title' => t('Profile to copy from'),
'#options' => $profile_types,
'#default_value' => variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy_source', NULL),
);
$form['commerce_' . $checkout_pane['pane_id'] . '_profile_copy_wrapper']['commerce_' . $checkout_pane['pane_id'] . '_profile_copy_default'] = array(
'#type' => 'checkbox',
'#title' => t('Make copying information from this profile the default action, requiring users to uncheck a box on the checkout pane to enter a different address.'),
'#default_value' => variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy_default', TRUE),
);
}
return $form;
}
/**
* Checkout pane callback: returns a customer profile edit form.
*/
function commerce_customer_profile_pane_checkout_form($form, &$form_state, $checkout_pane, $order) {
$pane_form = array(
'#parents' => array(
$checkout_pane['pane_id'],
),
);
// Extract the type of profile represented by this pane from its ID.
$type = substr($checkout_pane['pane_id'], 17);
// Removes 'customer_profile_'
// Find the referenced profile using the related reference field...
$wrapper = entity_metadata_wrapper('commerce_order', $order);
$profile = NULL;
// If the associated order field has been set...
if ($field_name = variable_get('commerce_' . $checkout_pane['pane_id'] . '_field', '')) {
// Check to ensure the specified profile reference field exists on the
// current order type.
if (!field_info_instance('commerce_order', $field_name, $order->type)) {
return array();
}
$profile = $wrapper->{$field_name}
->value();
}
else {
// Or try the association stored in the order's data array if no field is set.
if (!empty($order->data['profiles'][$checkout_pane['pane_id']])) {
$profile = commerce_customer_profile_load($order->data['profiles'][$checkout_pane['pane_id']]);
}
}
// Create a new profile of the specified type if it hasn't already been made.
if (empty($profile)) {
$profile = commerce_customer_profile_new($type, $order->uid);
}
// Add the entity context of the current cart order.
$profile->entity_context = array(
'entity_type' => 'commerce_order',
'entity_id' => $order->order_id,
);
$pane_form['customer_profile'] = array(
'#type' => 'value',
'#value' => $profile,
);
// Add the field widgets for the profile.
field_attach_form('commerce_customer_profile', $profile, $pane_form, $form_state);
// If this checkout pane is configured to use values from a different
// customer profile, add a checkbox to allow users to toggle this.
if (variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy', FALSE) && ($source_profile_type_name = variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy_source', NULL))) {
// Load the default profile copy option from settings.
$profile_copy_default = variable_get('commerce_' . $checkout_pane['pane_id'] . '_profile_copy_default', FALSE);
// Make sure our profile type still exists..
if ($source_profile_type = commerce_customer_profile_type_load($source_profile_type_name)) {
$target_profile_type = commerce_customer_profile_type_load($profile->type);
$pane_form['#prefix'] = '<div id="' . strtr($checkout_pane['pane_id'], '_', '-') . '-ajax-wrapper">';
$pane_form['#suffix'] = '</div>';
$pane_form['commerce_customer_profile_copy'] = array(
'#type' => 'checkbox',
'#title' => t('My %target is the same as my %source.', array(
'%target' => $target_profile_type['name'],
'%source' => $source_profile_type['name'],
)),
'#element_validate' => array(
'commerce_customer_profile_copy_validate',
),
'#default_value' => isset($order->data['profile_copy'][$checkout_pane['pane_id']]['status']) ? $order->data['profile_copy'][$checkout_pane['pane_id']]['status'] : $profile_copy_default,
'#weight' => -30,
'#ajax' => array(
'callback' => 'commerce_customer_profile_copy_refresh',
'wrapper' => strtr($checkout_pane['pane_id'], '_', '-') . '-ajax-wrapper',
),
'#attached' => array(
'css' => array(
drupal_get_path('module', 'commerce_customer') . '/theme/commerce_customer.theme.css',
),
),
'#prefix' => '<div class="commerce-customer-profile-copy">',
'#suffix' => '</div>',
);
// If the order data has reference to fields that were copied over, hide
// them so we don't confuse the user by still allowing them to edit values.
if (!empty($order->data['profile_copy'][$checkout_pane['pane_id']]['status']) && isset($order->data['profile_copy'][$checkout_pane['pane_id']]['elements'])) {
foreach ($order->data['profile_copy'][$checkout_pane['pane_id']]['elements'] as $field_name => $field) {
foreach ($field as $langcode => $items) {
if (is_array($items)) {
foreach ($items as $delta => $item) {
if (!empty($pane_form[$field_name][$langcode][$delta])) {
$pane_form[$field_name][$langcode][$delta]['#access'] = FALSE;
}
elseif (!empty($pane_form[$field_name][$langcode])) {
$pane_form[$field_name][$langcode]['#access'] = FALSE;
}
}
}
else {
$pane_form[$field_name][$langcode]['#access'] = FALSE;
}
}
}
}
elseif (empty($order->data['profile_copy']) && $profile_copy_default) {
// Get field names that will be copied from the source profile.
foreach (field_info_instances('commerce_customer_profile', $source_profile_type['type']) as $field_name => $field) {
// If the field exists on the destination profile then disable it.
if (!empty($pane_form[$field_name])) {
$langcode = $pane_form[$field_name]['#language'];
$pane_form[$field_name][$langcode]['#access'] = FALSE;
}
}
}
}
}
// Tweak the form to remove the fieldset from the address field if there
// is only one on this profile.
$addressfields = array();
foreach (commerce_info_fields('addressfield', 'commerce_customer_profile') as $field_name => $field) {
if (!empty($pane_form[$field_name]['#language'])) {
$langcode = $pane_form[$field_name]['#language'];
// Only consider this addressfield if it's represented on the form.
if (!empty($pane_form[$field_name][$langcode])) {
$addressfields[] = array(
$field_name,
$langcode,
);
}
}
}
// Check to ensure only one addressfield was found on the form.
if (count($addressfields) == 1) {
list($field_name, $langcode) = array_shift($addressfields);
foreach (element_children($pane_form[$field_name][$langcode]) as $delta) {
// Don't mess with the "Add another item" button that could be present.
if ($pane_form[$field_name][$langcode][$delta]['#type'] != 'submit') {
$pane_form[$field_name][$langcode][$delta]['#type'] = 'container';
}
}
}
return $pane_form;
}
/**
* Ajax callback: Returns ajax command to refresh customer profile pane.
*/
function commerce_customer_profile_copy_refresh($form, &$form_state) {
$pane_id = reset($form_state['triggering_element']['#parents']);
$commands = array();
// Render the pane afresh to capture any changes based on address entry.
$commands[] = ajax_command_replace(NULL, drupal_render($form[$pane_id]));
// Allow other modules to add arbitrary AJAX commands on the refresh.
drupal_alter('commerce_customer_profile_copy_refresh', $commands, $form, $form_state);
return array(
'#type' => 'ajax',
'#commands' => $commands,
);
}
/**
* Checkout pane callback: validates a customer profile edit form.
*/
function commerce_customer_profile_pane_checkout_form_validate($form, &$form_state, $checkout_pane, $order) {
$pane_id = $checkout_pane['pane_id'];
// Check to ensure the specified profile reference field exists on the
// current order type.
$field_name = variable_get('commerce_' . $pane_id . '_field', '');
if (!empty($field_name) && !field_info_instance('commerce_order', $field_name, $order->type)) {
return TRUE;
}
$profile = $form_state['values'][$pane_id]['customer_profile'];
// Notify field widgets to validate their data.
field_attach_form_validate('commerce_customer_profile', $profile, $form[$checkout_pane['pane_id']], $form_state);
// If there were any errors in the field attach validate process for fields on
// this checkout pane's customer profile, fail the checkout pane validation.
if ($errors = form_get_errors()) {
foreach ($errors as $field => $error) {
if (substr($field, 0, strlen($pane_id) + 2) == $pane_id . '][') {
return FALSE;
}
}
}
return TRUE;
}
/**
* Checkout pane callback: submits a customer profile edit form.
*/
function commerce_customer_profile_pane_checkout_form_submit($form, &$form_state, $checkout_pane, $order) {
$pane_id = $checkout_pane['pane_id'];
// Check to ensure the specified profile reference field exists on the
// current order type.
$field_name = variable_get('commerce_' . $pane_id . '_field', '');
if (!empty($field_name) && !field_info_instance('commerce_order', $field_name, $order->type)) {
return;
}
// Ensure the profile is active.
$profile = $form_state['values'][$pane_id]['customer_profile'];
$profile->status = TRUE;
// Set the profile's uid if it's being created at this time.
if (empty($profile->profile_id)) {
$profile->uid = $order->uid;
}
// Notify field widgets.
field_attach_submit('commerce_customer_profile', $profile, $form[$checkout_pane['pane_id']], $form_state);
// Save the profile.
commerce_customer_profile_save($profile);
// Store the profile ID for the related field as specified on the settings form.
if (!empty($field_name)) {
$wrapper = entity_metadata_wrapper('commerce_order', $order);
$wrapper->{$field_name} = $profile;
}
else {
// Or make the association in the order's data array if no field was found.
$order->data['profiles'][$checkout_pane['pane_id']] = $profile->profile_id;
}
}
/**
* Checkout pane callback: returns the cart contents review data for the
* Review checkout pane.
*/
function commerce_customer_profile_pane_review($form, $form_state, $checkout_pane, $order) {
// Load the profile based on the related customer profile reference field...
if ($field_name = variable_get('commerce_' . $checkout_pane['pane_id'] . '_field', '')) {
$profile = entity_metadata_wrapper('commerce_order', $order)->{$field_name}
->value();
}
else {
// Or use the association stored in the order's data array if no field is set.
$profile = commerce_customer_profile_load($order->data['profiles'][$checkout_pane['pane_id']]);
}
if ($profile) {
$content = entity_view('commerce_customer_profile', array(
$profile->profile_id => $profile,
), 'customer');
return drupal_render($content);
}
else {
return t('No information');
}
}
Functions
Name | Description |
---|---|
commerce_customer_profile_copy_refresh | Ajax callback: Returns ajax command to refresh customer profile pane. |
commerce_customer_profile_pane_checkout_form | Checkout pane callback: returns a customer profile edit form. |
commerce_customer_profile_pane_checkout_form_submit | Checkout pane callback: submits a customer profile edit form. |
commerce_customer_profile_pane_checkout_form_validate | Checkout pane callback: validates a customer profile edit form. |
commerce_customer_profile_pane_review | Checkout pane callback: returns the cart contents review data for the Review checkout pane. |
commerce_customer_profile_pane_settings_form | Checkout pane callback: returns the customer profile pane's settings form. |