File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
app/code/Magento/Cms/Ui/DataProvider/Block/Row Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,17 @@ public function __construct(UrlInterface $urlBuilder)
34
34
/**
35
35
* Get data
36
36
*
37
- * @param array $dataRow
38
- * @param array $data
37
+ * @param array $rowData
38
+ * @param array $rowActionConfig
39
39
* @return mixed
40
40
*/
41
- public function getData (array $ dataRow , array $ data = [])
41
+ public function getData (array $ rowData , array $ rowActionConfig = [])
42
42
{
43
43
return [
44
44
'edit ' => [
45
45
'href ' => $ this ->urlBuilder ->getUrl (
46
- isset ($ data ['url_path ' ]) ? $ data ['url_path ' ] : static ::URL_PATH ,
47
- ['block_id ' => $ dataRow ['block_id ' ]]
46
+ isset ($ rowActionConfig ['url_path ' ]) ? $ rowActionConfig ['url_path ' ] : static ::URL_PATH ,
47
+ ['block_id ' => $ rowData ['block_id ' ]]
48
48
),
49
49
'label ' => __ ('Edit ' ),
50
50
]
You can’t perform that action at this time.
0 commit comments