You are here

public function OrderPanePluginBase::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 OrderPanePluginInterface::getClasses

6 methods override OrderPanePluginBase::getClasses()
AddressPaneBase::getClasses in uc_order/src/Plugin/Ubercart/OrderPane/AddressPaneBase.php
Returns the classes used to wrap an order pane.
CustomerInfo::getClasses in uc_order/src/Plugin/Ubercart/OrderPane/CustomerInfo.php
Returns the classes used to wrap an order pane.
LineItems::getClasses in uc_order/src/Plugin/Ubercart/OrderPane/LineItems.php
Returns the classes used to wrap an order pane.
Payment::getClasses in payment/uc_payment/src/Plugin/Ubercart/OrderPane/Payment.php
Returns the classes used to wrap an order pane.
Quotes::getClasses in shipping/uc_quote/src/Plugin/Ubercart/OrderPane/Quotes.php
Returns the classes used to wrap an order pane.

... See full list

File

uc_order/src/OrderPanePluginBase.php, line 22

Class

OrderPanePluginBase
Defines a base order pane plugin implementation.

Namespace

Drupal\uc_order

Code

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