You are here

public function Payment::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

payment/uc_payment/src/Plugin/Ubercart/OrderPane/Payment.php, line 28

Class

Payment
Specify and collect payment for an order.

Namespace

Drupal\uc_payment\Plugin\Ubercart\OrderPane

Code

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