- /**
- * Get progress html checkout step
- *
- * @param string $checkoutStep
- * @return mixed
- */
- protected function getProgressHtml($checkoutStep = '')
- {
- $layout = $this->layoutFactory->create();
- $layout->getUpdate()->load(['checkout_onepage_progress']);
- $layout->generateXml();
- $layout->generateElements();
-
- $block = $layout->getBlock('progress')->setAttribute('next_step', $checkoutStep);
- return $block->toHtml();
- }