_configStructure = $configStructure; } /** * Retrieve list of options * * @return array */ public function toOptionArray() { if ($this->_options === null) { $this->_options = []; /** @var $section \Magento\Config\Model\Config\Structure\Element\Section */ $section = $this->_configStructure->getElement('trans_email'); /** @var $group \Magento\Config\Model\Config\Structure\Element\Group */ foreach ($section->getChildren() as $group) { $this->_options[] = [ 'value' => preg_replace('#^ident_(.*)$#', '$1', $group->getId()), 'label' => $group->getLabel(), ]; } ksort($this->_options); } return $this->_options; } }