forked from magento/magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.php
More file actions
42 lines (39 loc) · 1.19 KB
/
Form.php
File metadata and controls
42 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Catalog\Block\Adminhtml;
use Magento\Backend\Block\Widget\Form\Generic;
/**
* Base block for rendering category and product forms
*/
class Form extends Generic
{
/**
* Prepare the layout
*
* @return void
*/
protected function _prepareLayout()
{
\Magento\Framework\Data\Form::setElementRenderer(
$this->getLayout()->createBlock(
\Magento\Backend\Block\Widget\Form\Renderer\Element::class,
$this->getNameInLayout() . '_element'
)
);
\Magento\Framework\Data\Form::setFieldsetRenderer(
$this->getLayout()->createBlock(
\Magento\Backend\Block\Widget\Form\Renderer\Fieldset::class,
$this->getNameInLayout() . '_fieldset'
)
);
\Magento\Framework\Data\Form::setFieldsetElementRenderer(
$this->getLayout()->createBlock(
\Magento\Catalog\Block\Adminhtml\Form\Renderer\Fieldset\Element::class,
$this->getNameInLayout() . '_fieldset_element'
)
);
}
}