You are here

commerce_reorder.views.inc in Commerce Reorder 7

Same filename and directory in other branches
  1. 7.2 includes/views/commerce_reorder.views.inc

File

includes/views/commerce_reorder.views.inc
View source
<?php

/**
 *
 */

/**
 * Implements hook_views_data_alter().
 */
function commerce_reorder_views_data_alter(&$data) {

  // Reorder button.
  $data['commerce_order']['commerce_reorder_button'] = array(
    'field' => array(
      'title' => t('Reorder button'),
      'help' => t('Display a button to copy the line items to a new order in cart status.'),
      'handler' => 'commerce_reorder_handler_field_commerce_reorder_button',
    ),
  );
}

Functions