You are here

public function AddressPaneBase::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/AddressPaneBase.php, line 17

Class

AddressPaneBase
Provides a generic address pane that can be extended as required.

Namespace

Drupal\uc_order\Plugin\Ubercart\OrderPane

Code

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