| Current Path : /home/rtorresani/www/vendor/magento/module-config/Model/Config/Structure/Element/ |
| Current File : //home/rtorresani/www/vendor/magento/module-config/Model/Config/Structure/Element/Group.php |
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Config\Model\Config\Structure\Element;
/**
* Group element.
*
* @api
* @since 100.0.2
*/
class Group extends AbstractComposite
{
/**
* Group clone model factory
*
* @var \Magento\Config\Model\Config\BackendClone\Factory
*/
protected $_cloneModelFactory;
/**
*
* @var \Magento\Config\Model\Config\Structure\Element\Dependency\Mapper
*/
protected $_dependencyMapper;
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Framework\Module\Manager $moduleManager
* @param Iterator\Field $childrenIterator
* @param \Magento\Config\Model\Config\BackendClone\Factory $cloneModelFactory
* @param Dependency\Mapper $dependencyMapper
*/
public function __construct(
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\Module\Manager $moduleManager,
\Magento\Config\Model\Config\Structure\Element\Iterator\Field $childrenIterator,
\Magento\Config\Model\Config\BackendClone\Factory $cloneModelFactory,
\Magento\Config\Model\Config\Structure\Element\Dependency\Mapper $dependencyMapper
) {
parent::__construct($storeManager, $moduleManager, $childrenIterator);
$this->_cloneModelFactory = $cloneModelFactory;
$this->_dependencyMapper = $dependencyMapper;
}
/**
* Should group fields be cloned
*
* @return bool
*/
public function shouldCloneFields()
{
return isset($this->_data['clone_fields']) && !empty($this->_data['clone_fields']);
}
/**
* Retrieve clone model
*
* @return \Magento\Framework\Model\AbstractModel
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getCloneModel()
{
if (!isset($this->_data['clone_model']) || !$this->_data['clone_model']) {
throw new \Magento\Framework\Exception\LocalizedException(
__('Config form fieldset clone model required to be able to clone fields')
);
}
return $this->_cloneModelFactory->create($this->_data['clone_model']);
}
/**
* Populate form fieldset with group data
*
* @param \Magento\Framework\Data\Form\Element\Fieldset $fieldset
* @return void
*/
public function populateFieldset(\Magento\Framework\Data\Form\Element\Fieldset $fieldset)
{
$originalData = [];
foreach ($this->_data as $key => $value) {
if (!is_array($value)) {
$originalData[$key] = $value;
}
}
$fieldset->setOriginalData($originalData);
}
/**
* Check whether group should be expanded
*
* @return bool
*/
public function isExpanded()
{
return (bool)(isset($this->_data['expanded']) ? (int)$this->_data['expanded'] : false);
}
/**
* Retrieve group fieldset css
*
* @return string
*/
public function getFieldsetCss()
{
return array_key_exists('fieldset_css', $this->_data) ? $this->_data['fieldset_css'] : '';
}
/**
* Retrieve field dependencies
*
* @param string $storeCode
* @return array
*/
public function getDependencies($storeCode)
{
$dependencies = [];
if (false == isset($this->_data['depends']['fields'])) {
return $dependencies;
}
$dependencies = $this->_dependencyMapper->getDependencies($this->_data['depends']['fields'], $storeCode);
return $dependencies;
}
}