You are here

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

Class

LineItems
View and modify an order's line items.

Namespace

Drupal\uc_order\Plugin\Ubercart\OrderPane

Code

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