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
zendframework1
library
Zend
Config
Writer
Array.php
Go to the documentation of this file.
1
<?php
25
#require_once 'Zend/Config/Writer/FileAbstract.php';
26
33
class
Zend_Config_Writer_Array
extends
Zend_Config_Writer_FileAbstract
34
{
41
public
function
render
()
42
{
43
$data
= $this->_config->toArray();
44
$sectionName = $this->_config->getSectionName();
45
46
if
(is_string($sectionName)) {
47
$data
= array($sectionName =>
$data
);
48
}
49
50
$arrayString =
"<?php\n"
51
.
"return "
. var_export(
$data
,
true
) .
";\n"
;
52
53
return
$arrayString;
54
}
55
}
Zend_Config_Writer_FileAbstract\render
render()
Definition:
FileAbstract.php:130
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Zend_Config_Writer_FileAbstract
Definition:
FileAbstract.php:33