You are here

commerce_order_handler_field_order_operations.inc in Commerce Core 7

File

modules/order/includes/views/handlers/commerce_order_handler_field_order_operations.inc
View source
<?php

/**
 * Field handler to present an order's operations links.
 */
class commerce_order_handler_field_order_operations extends views_handler_field {
  function construct() {
    parent::construct();
    $this->additional_fields['order_id'] = 'order_id';
  }
  function option_definition() {
    $options = parent::option_definition();
    $options['add_destination'] = TRUE;
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $form['add_destination'] = array(
      '#type' => 'checkbox',
      '#title' => t('Add a destination parameter to edit and delete operation links so users return to this View on form submission.'),
      '#default_value' => $this->options['add_destination'],
    );
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function render($values) {
    $order_id = $this
      ->get_value($values, 'order_id');

    // Get the operations links.
    $links = menu_contextual_links('commerce-order', 'admin/commerce/orders', array(
      $order_id,
    ));
    if (!empty($links)) {

      // Add the destination to the links if specified.
      if ($this->options['add_destination']) {
        foreach ($links as $id => &$link) {

          // Only include the destination for the edit and delete forms.
          if (in_array($id, array(
            'commerce-order-edit',
            'commerce-order-delete',
          ))) {
            $link['query'] = drupal_get_destination();
          }
        }
      }
      drupal_add_css(drupal_get_path('module', 'commerce_order') . '/theme/commerce_order.admin.css');
      return theme('links', array(
        'links' => $links,
        'attributes' => array(
          'class' => array(
            'links',
            'inline',
            'operations',
          ),
        ),
      ));
    }
  }

}

Classes

Namesort descending Description
commerce_order_handler_field_order_operations Field handler to present an order's operations links.