Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
module-backend
Helper
Js.php
Go to the documentation of this file.
1
<?php
12
namespace
Magento\Backend\Helper
;
13
18
class
Js
19
{
38
public
function
decodeGridSerializedInput
($encoded)
39
{
40
$isSimplified =
false
=== strpos($encoded,
'='
);
41
$result
= [];
42
parse_str($encoded, $decoded);
43
foreach
($decoded as $key =>
$value
) {
44
if
(is_numeric($key)) {
45
if
($isSimplified) {
46
$result
[] = $key;
47
}
else
{
48
$result
[$key] =
null
;
49
parse_str(base64_decode(
$value
),
$result
[$key]);
50
}
51
}
52
}
53
return
$result
;
54
}
55
}
$result
$result
Definition:
product_configurable_not_available_rollback.php:26
Magento\Backend\Helper\Js\decodeGridSerializedInput
decodeGridSerializedInput($encoded)
Definition:
Js.php:38
$value
$value
Definition:
gender.phtml:16
Magento\Backend\Helper\Js
Definition:
Js.php:18
Magento\Backend\Helper
Definition:
DataTest.php:6