frontend_order
Adds extra content to in-cart checkout page.
Shop-Script
Input (passed by reference)
$params array Parameters.
$params['config'] shopCheckoutConfig Instance of checkout configuration class.
$params['config'] shopCheckoutConfig Instance of checkout configuration class.
… your plugin code …
Output
{$frontend_order}
Custom HTML code.
Shop-Script
Plugin code example
PHP
public function frontendOrder($params)
{
/** @var shopCheckoutConfig */
$checkout_config = $params['config'];
// $checkout_steps = $checkout_config->getCheckoutSteps();
return '<!-- custom HTML code -->';
}









