You are here

function hook_uc_order_pane_alter in Ubercart 8.4

Same name and namespace in other branches
  1. 7.3 uc_order/uc_order.api.php \hook_uc_order_pane_alter()

Alters order pane plugin definitions.

Parameters

array $panes: Keys are plugin IDs. Values are plugin definitions.

1 invocation of hook_uc_order_pane_alter()
OrderPaneManager::__construct in uc_order/src/Plugin/OrderPaneManager.php
Constructs an OrderPaneManager object.

File

uc_order/uc_order.api.php, line 97
Hooks provided by the Order module.

Code

function hook_uc_order_pane_alter(array &$panes) {
  $panes['payment']['title'] = 'Payment information';
}