You are here

function commerce_reorder_views_data_alter in Commerce Reorder 7

Same name and namespace in other branches
  1. 7.2 includes/views/commerce_reorder.views.inc \commerce_reorder_views_data_alter()

Implements hook_views_data_alter().

File

includes/views/commerce_reorder.views.inc, line 10

Code

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',
    ),
  );
}