public function Quotes::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
- shipping/
uc_quote/ src/ Plugin/ Ubercart/ OrderPane/ Quotes.php, line 26
Class
- Quotes
- Get a shipping quote for the order from a quoting module.
Namespace
Drupal\uc_quote\Plugin\Ubercart\OrderPaneCode
public function getClasses() {
return [
'pos-left',
];
}