12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Block\Adminhtml\Attribute\Edit\Options;
- /**
- * Attribute add/edit form options tab
- *
- * @api
- * @deprecated 101.0.0
- * @since 100.0.2
- */
- abstract class AbstractOptions extends \Magento\Framework\View\Element\AbstractBlock
- {
- /**
- * Preparing layout, adding buttons
- *
- * @return $this
- */
- protected function _prepareLayout()
- {
- $this->addChild('labels', \Magento\Eav\Block\Adminhtml\Attribute\Edit\Options\Labels::class);
- $this->addChild('options', \Magento\Eav\Block\Adminhtml\Attribute\Edit\Options\Options::class);
- return parent::_prepareLayout();
- }
- /**
- * {@inheritdoc}
- * @return string
- */
- protected function _toHtml()
- {
- return $this->getChildHtml();
- }
- }
|