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-cms
Model
Wysiwyg
ConfigProviderFactory.php
Go to the documentation of this file.
1
<?php
7
declare(strict_types=1);
8
9
namespace
Magento\Cms\Model\Wysiwyg
;
10
11
use
Magento\Framework\Data\Wysiwyg\ConfigProviderInterface
as WysiwygConfigInterface;
12
16
class
ConfigProviderFactory
17
{
23
private
$objectManager;
24
28
public
function
__construct
(\
Magento
\Framework\
ObjectManagerInterface
$objectManager)
29
{
30
$this->objectManager =
$objectManager
;
31
}
32
40
public
function
create
(
string
$instance, array
$arguments
= []): WysiwygConfigInterface
41
{
42
return
$this->objectManager->create($instance,
$arguments
);
43
}
44
}
Magento\Cms\Model\Wysiwyg\ConfigProviderFactory\__construct
__construct(\Magento\Framework\ObjectManagerInterface $objectManager)
Definition:
ConfigProviderFactory.php:28
Magento\Cms\Model\Wysiwyg\ConfigProviderFactory
Definition:
ConfigProviderFactory.php:16
$objectManager
$objectManager
Definition:
bootstrap.php:17
Magento\Cms\Model\Wysiwyg
Definition:
ConfigTest.php:6
Magento\Framework\ObjectManagerInterface
Definition:
ObjectManagerInterface.php:12
Magento\Framework\Data\Wysiwyg\ConfigProviderInterface
Definition:
ConfigProviderInterface.php:14
Magento\Cms\Model\Wysiwyg\ConfigProviderFactory\create
create(string $instance, array $arguments=[])
Definition:
ConfigProviderFactory.php:40
Magento
$arguments
$arguments
Definition:
final_price.phtml:24