You are here

public function CustomerInfo::getClasses in Ubercart 8.4

Returns the classes used to wrap an order pane.

Choose "pos-left" to float left against the previous pane or "abs-left" to start a new line of panes.

Return value

array An array of CSS classes.

Overrides OrderPanePluginBase::getClasses

File

uc_order/src/Plugin/Ubercart/OrderPane/CustomerInfo.php, line 24

Class

CustomerInfo
Manage the information for the customer's user account.

Namespace

Drupal\uc_order\Plugin\Ubercart\OrderPane

Code

public function getClasses() {
  return [
    'pos-left',
  ];
}