You are here

function commerce_customer_ui_menu_local_tasks_alter in Commerce Core 7

Implements hook_menu_local_tasks_alter().

File

modules/customer/commerce_customer_ui.module, line 147

Code

function commerce_customer_ui_menu_local_tasks_alter(&$data, $router_item, $root_path) {

  // Add action link 'admin/commerce/customer-profiles/add' on
  // 'admin/commerce/customer-profiles'.
  if ($root_path == 'admin/commerce/customer-profiles') {
    $item = menu_get_item('admin/commerce/customer-profiles/add');
    if ($item['access']) {
      $data['actions']['output'][] = array(
        '#theme' => 'menu_local_action',
        '#link' => $item,
      );
    }
  }
}