You are here

function commerce_recurring_entity_info_alter in Commerce Recurring Framework 7

Implements hook_entity_info_alter()

File

./commerce_recurring.module, line 59
commerce_recurring.module Provides recurring framework for Drupal Commerce

Code

function commerce_recurring_entity_info_alter() {
  $entity_info['commerce_order']['bundles']['recurring_order'] = array(
    'label' => t('Recurring Order', array(), array(
      'context' => 'a recurring drupal commerce order',
    )),
  );
}