-
Notifications
You must be signed in to change notification settings - Fork 9.4k
/
Copy pathAbstractGrid.php
109 lines (100 loc) · 2.74 KB
/
AbstractGrid.php
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Block\Adminhtml\Attribute\Grid;
/**
* Product attributes grid
*
* @api
* @SuppressWarnings(PHPMD.DepthOfInheritance)
* @deprecated 101.0.0
* @since 100.0.2
*/
abstract class AbstractGrid extends \Magento\Backend\Block\Widget\Grid\Extended
{
/**
* Block Module
*
* @var string
*/
protected $_module = 'adminhtml';
/**
* @return void
*/
protected function _construct()
{
parent::_construct();
$this->setId('attributeGrid');
$this->setDefaultSort('attribute_code');
$this->setDefaultDir('ASC');
}
/**
* Prepare default grid column
*
* @return $this
*/
protected function _prepareColumns()
{
parent::_prepareColumns();
$this->addColumn(
'attribute_code',
[
'header' => __('Attribute Code'),
'sortable' => true,
'index' => 'attribute_code',
'header_css_class' => 'col-attr-code',
'column_css_class' => 'col-attr-code'
]
);
$this->addColumn(
'frontend_label',
[
'header' => __('Default Label'),
'sortable' => true,
'index' => 'frontend_label',
'header_css_class' => 'col-label',
'column_css_class' => 'col-label'
]
);
$this->addColumn(
'is_required',
[
'header' => __('Required'),
'sortable' => true,
'index' => 'is_required',
'type' => 'options',
'options' => ['1' => __('Yes'), '0' => __('No')],
'header_css_class' => 'col-required',
'column_css_class' => 'col-required'
]
);
$this->addColumn(
'is_user_defined',
[
'header' => __('System'),
'sortable' => true,
'index' => 'is_user_defined',
'type' => 'options',
'options' => [
'0' => __('Yes'), // intended reverted use
'1' => __('No'), // intended reverted use
],
'header_css_class' => 'col-system',
'column_css_class' => 'col-system'
]
);
return $this;
}
/**
* Return url of given row
*
* @param \Magento\Framework\DataObject $row
* @return string
*/
public function getRowUrl($row)
{
return $this->getUrl($this->_module . '/*/edit', ['attribute_id' => $row->getAttributeId()]);
}
}