![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-ui/Block/Component/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Ui\Block\Component; /** * Multi steps wizard block * * @api * @since 100.0.2 */ class StepsWizard extends \Magento\Framework\View\Element\Template { /** * Wizard step template * * @var string */ protected $_template = 'Magento_Ui::stepswizard.phtml'; /** * @var array */ protected $initData = []; /** * @var null|\Magento\Ui\Block\Component\StepsWizard\StepInterface[] */ private $steps; /** * @return \Magento\Ui\Block\Component\StepsWizard\StepInterface[] */ public function getSteps() { if ($this->steps === null) { foreach ($this->getLayout()->getChildBlocks($this->getNameInLayout()) as $step) { if ($step instanceof StepsWizard\StepInterface) { $this->steps[$step->getComponentName()] = $step; } } } return $this->steps; } // @codeCoverageIgnoreStart /** * @return array */ public function getStepComponents() { return array_keys($this->getSteps()); } /** * @return string */ public function getComponentName() { return $this->getNameInLayout(); } /** * @return array */ public function getInitData() { return $this->initData; } /** * @param array $initData * @return $this */ public function setInitData($initData) { $this->initData = $initData; return $this; } }