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-theme
Model
Data
Design
Config.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Theme\Model\Data\Design
;
7
8
use
Magento\Framework\Api\AbstractExtensibleObject
;
9
use
Magento\Theme\Api\Data\DesignConfigInterface
;
10
11
class
Config
extends
AbstractExtensibleObject
implements
DesignConfigInterface
12
{
16
const
DESIGN_CONFIG_GRID_INDEXER_ID
=
'design_config_grid'
;
17
21
public
function
getScope
()
22
{
23
return
$this->
_get
(self::SCOPE);
24
}
25
29
public
function
getScopeId
()
30
{
31
return
$this->
_get
(self::SCOPE_ID);
32
}
33
37
public
function
setScope
($scope)
38
{
39
return
$this->
setData
(self::SCOPE, $scope);
40
}
41
45
public
function
setScopeId
($scopeId =
null
)
46
{
47
return
$this->
setData
(self::SCOPE_ID, $scopeId);
48
}
49
53
public
function
getExtensionAttributes
()
54
{
55
return
$this->
_getExtensionAttributes
();
56
}
57
61
public
function
setExtensionAttributes
(\
Magento
\
Theme
\Api\Data\DesignConfigExtensionInterface
$extensionAttributes
)
62
{
63
return
$this->
_setExtensionAttributes
($extensionAttributes);
64
}
65
}
Magento\Theme\Model\Theme
Definition:
Theme.php:36
Magento\Theme\Model\Data\Design\Config\getExtensionAttributes
getExtensionAttributes()
Definition:
Config.php:53
Magento\Framework\Api\AbstractExtensibleObject\_setExtensionAttributes
_setExtensionAttributes(\Magento\Framework\Api\ExtensionAttributesInterface $extensionAttributes)
Definition:
AbstractExtensibleObject.php:190
Magento\Theme\Api\Data\DesignConfigInterface
Definition:
DesignConfigInterface.php:15
Magento\Theme\Model\Data\Design\Config\setScopeId
setScopeId($scopeId=null)
Definition:
Config.php:45
Magento\Theme\Model\Data\Design\Config\setExtensionAttributes
setExtensionAttributes(\Magento\Theme\Api\Data\DesignConfigExtensionInterface $extensionAttributes)
Definition:
Config.php:61
Magento\Framework\Api\AbstractSimpleObject\_get
_get($key)
Definition:
AbstractSimpleObject.php:35
$extensionAttributes
$extensionAttributes
Definition:
payment.php:22
Magento\Theme\Model\Data\Design\Config\setScope
setScope($scope)
Definition:
Config.php:37
Magento
Magento\Theme\Model\Data\Design\Config\getScope
getScope()
Definition:
Config.php:21
Magento\Theme\Model\Data\Design\Config\DESIGN_CONFIG_GRID_INDEXER_ID
const DESIGN_CONFIG_GRID_INDEXER_ID
Definition:
Config.php:16
Magento\Framework\Api\AbstractSimpleObject\setData
setData($key, $value)
Definition:
AbstractSimpleObject.php:47
Magento\Theme\Model\Data\Design
Magento\Theme\Model\Data\Design\Config
Definition:
Config.php:11
Magento\Theme\Model\Data\Design\Config\getScopeId
getScopeId()
Definition:
Config.php:29
Magento\Framework\Api\AbstractExtensibleObject\_getExtensionAttributes
_getExtensionAttributes()
Definition:
AbstractExtensibleObject.php:164
Magento\Framework\Api\AbstractExtensibleObject
Definition:
AbstractExtensibleObject.php:17